17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
// nuxt.config.ts
|
||
import { defineNuxtConfig } from 'nuxt/config'
|
||
|
||
export default defineNuxtConfig({
|
||
srcDir: 'app',
|
||
|
||
// 运行时配置:前端可读
|
||
runtimeConfig: {
|
||
public: {
|
||
// 默认指向同源 /api,部署时可以通过 NUXT_PUBLIC_API_BASE 覆盖
|
||
apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost:8004/api',
|
||
},
|
||
},
|
||
|
||
compatibilityDate: '2025-10-29',
|
||
})
|