mirror of
https://github.com/v2rayA/v2rayA.git
synced 2024-11-25 16:34:19 +08:00
29 lines
504 B
TypeScript
29 lines
504 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
ssr: false,
|
|
modules: [
|
|
'@vueuse/nuxt',
|
|
'@unocss/nuxt',
|
|
'@nuxtjs/i18n',
|
|
'@element-plus/nuxt'
|
|
],
|
|
i18n: {
|
|
strategy: 'no_prefix',
|
|
langDir: 'locales',
|
|
locales: [
|
|
{
|
|
code: 'zh',
|
|
iso: 'zh-hans',
|
|
file: 'zh-hans.yaml',
|
|
name: '简体中文'
|
|
}
|
|
]
|
|
},
|
|
unocss: {
|
|
preflight: true
|
|
},
|
|
experimental: {
|
|
reactivityTransform: true
|
|
}
|
|
})
|