Files
wails3-nuxt4/frontend/nuxt.config.ts
2026-03-11 18:33:15 +08:00

16 lines
400 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
ssr: false, // 关闭 SSR改为 CSR
nitro: {
preset: 'static',
output: {
publicDir: './dist' // 相对 Nuxt 项目根目录的路径
}
},
app: {
baseURL: './' // 确保相对路径,方便打包到 Wails
}
})