Frontend/nuxt.config.ts

11 lines
241 B
TypeScript
Raw Permalink Normal View History

2025-01-19 10:02:08 +08:00
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
2025-01-21 19:18:28 +08:00
devtools: { enabled: true },
2025-02-25 20:49:51 +08:00
runtimeConfig: {
public: {
2025-02-25 21:41:48 +08:00
apiHost: 'http://localhost:5291',
2025-02-25 20:49:51 +08:00
}
}
2025-01-19 10:02:08 +08:00
})