-
Notifications
You must be signed in to change notification settings - Fork 5
/
nuxt.config.ts
82 lines (81 loc) · 1.71 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
71
72
73
74
75
76
77
78
79
80
81
82
// https://nuxt.com/docs/api/configuration/nuxt-config
import vuetify from 'vite-plugin-vuetify';
import transformAssetUrls = vuetify.transformAssetUrls;
import { createProxyServer } from 'httpxy';
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
build: {
transpile: ['vuetify'],
},
modules: [
'@pinia/nuxt',
'@nuxtjs/i18n',
'@nuxtjs/sitemap',
(_options, nuxt) => {
nuxt.hooks.hook('vite:extendConfig', (config) => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }));
});
},
],
i18n: {
strategy: 'prefix_except_default',
vueI18n: './i18n.config.ts',
defaultLocale: 'en',
lazy: true,
locales: [
{ code: 'en', language: 'en' },
{ code: 'zh_cn', language: 'zh-CN' },
{ code: 'zh_tw', language: 'zh-TW' },
],
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'i18n_redirected',
redirectOn: 'root',
},
},
vite: {
vue: {
template: {
transformAssetUrls,
},
},
server: {
proxy: {
'/api': 'http://localhost:10005',
'/ws': {
target: 'ws://localhost:10005',
ws: true,
rewriteWsOrigin: true,
},
},
},
},
features: {
inlineStyles: false,
},
experimental: {
inlineRouteRules: true,
},
nitro: {
prerender: {
routes: ['/', '/sitemap.xml'],
ignore: ['/api'],
},
},
routeRules: {
'/api/**': {
proxy: 'http://localhost:10005/api/**',
},
},
sitemap: {
exclude: ['/secret/**', '/admin/**', '/api/**'],
},
devServer: {
host: '0.0.0.0',
},
site: {
url: 'redenmc.com',
},
});