-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
122 lines (117 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// https://nuxt.com/docs/api/configuration/nuxt-config
import AutoImport from "unplugin-auto-import/vite";
import Components from "unplugin-vue-components/vite";
import { NaiveUiResolver } from "unplugin-vue-components/resolvers";
export default defineNuxtConfig({
ssr: false,
app: {
head: {
titleTemplate: "%s | MOYU",
},
},
modules: [
"@unocss/nuxt",
"@nuxthq/ui",
"@element-plus/nuxt",
"@vueuse/nuxt",
[
"@pinia/nuxt",
{
autoImports: ["defineStore", ["defineStore", "definePiniaStore"]],
},
],
// "@nuxtjs/color-mode",
"@pinia-plugin-persistedstate/nuxt",
],
devtools: {
enabled: true,
timeline: {
enabled: true,
},
},
piniaPersistedstate: {
storage: "sessionStorage",
},
devServer: {
https: {
key: "keys/zzx-local_dev.key",
cert: "keys/zzx-local_dev.cert",
},
port: 5050,
},
nitro: {
devProxy: {
"/api_cors": {
target: "https://api.yicloud.vip/api",
changeOrigin: true,
// not know.
// prependPath: true,
},
},
},
vite: {
plugins: [
Components({
dts: true,
resolvers: [NaiveUiResolver()],
}),
],
},
colorMode: {
preference: "class",
},
});
// router: {
// },
// pinia: {
// },
// imports: {
// autoImport: true,
// },
// colorMode: {
// // preference: "dark",
// preference: "light",
// },
// tailwindcss: {
// config: {
// darkmode: "class",
// },
// },
//NuxtLab ui
// ui: {},
// 工具链可能永远会把 tailwind 的样式插入 head 的尾部。这种情况下,你需要在 app 挂载之前动态的插入 meta 标签。
// app: {
// head: {
// meta: [
// {
// name: 'naive-ui-style',
// },
// {
// name: 'vueuc-style',
// },
// ],
// },
// },
// Vite. Use Nitro devServer instead.
// server: {
// proxy: {
// "/api_cors": {
// target: "https://api.yicloud.vip/api",
// changeOrigin: true,
// },
// },
// },
// AutoImport seems doesn't work.
// AutoImport({
// imports: [
// "vue",
// {
// "naive-ui": [
// "useDialog",
// "useMessage",
// "useNotification",
// "useLoadingBar",
// ],
// },
// ],
// }),