-
Notifications
You must be signed in to change notification settings - Fork 35
/
nuxt.config.ts
70 lines (69 loc) · 1.41 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { fileURLToPath } from 'node:url'
import { env } from 'node:process'
import { defineNuxtConfig } from 'nuxt/config'
export default defineNuxtConfig({
modules: [
'@vueuse/nuxt',
'@nuxt/ui',
'@nuxt/devtools',
'@nuxtjs/i18n',
'@pinia/nuxt',
'@pinia-plugin-persistedstate/nuxt',
'unplugin-turbo-console/nuxt',
'@nuxt/test-utils/module',
],
i18n: {
langDir: 'locales',
strategy: 'no_prefix',
locales: [
{
code: 'en',
iso: 'en',
file: 'en.json',
name: 'English',
},
{
code: 'zhCN',
iso: 'zh-CN',
file: 'zh-CN.json',
name: '简体中文',
},
],
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'i18n_redirected',
redirectOn: 'root',
},
},
piniaPersistedstate: {
storage: 'localStorage',
},
ssr: false,
ui: {
icons: ['bi', 'gridicons', 'ri', 'icon-park-outline', 'tabler', 'ant-design'],
},
build: {
transpile: ['vue-sonner'],
},
alias: {
server: fileURLToPath(new URL('./server', import.meta.url)),
types: fileURLToPath(new URL('./types', import.meta.url)),
},
css: [
'atropos/css',
],
vite: {
define: {
__ORIGIN__: JSON.stringify(env.ORIGIN || ''),
},
},
appConfig: {
origin: env.ORIGIN || '',
},
runtimeConfig: {
blockApps: '',
blockUsers: '',
steamKey: '',
cacheTime: '',
},
})