-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnuxt.config.ts
138 lines (136 loc) · 3 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// import terser from '@rollup/plugin-terser'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@nuxtjs/tailwindcss',
'shadcn-nuxt',
'@nuxtjs/color-mode',
'@pinia/nuxt',
'@pinia-plugin-persistedstate/nuxt',
'@oku-ui/motion-nuxt',
'@nuxt/eslint',
'@nuxt/image',
],
plugins: ['~/plugins/toast.ts'],
ssr: (process.env.SSR === 'true'),
devtools: {
enabled: false,
timeline: {
enabled: false,
},
},
app: {
// TODO: Unstable AF
pageTransition: { mode: 'out-in', name: 'fade-short-slide' },
layoutTransition: false,
head: {
meta: [
{
name: 'viewport',
content:
'width=device-width, initial-scale=1.0, interactive-widget=resizes-content',
},
],
link: [
{
rel: 'icon',
href: '/shadfin_app_concept.svg',
},
],
},
},
css: ['~/assets/css/transitions.css'],
vue: {
propsDestructure: true,
compilerOptions: {},
},
router: {
options: {
hashMode: (process.env.SSR !== 'true'),
},
},
colorMode: {
classSuffix: '',
},
runtimeConfig: {
internalServerUrl: undefined,
public: {
serverUrl: undefined,
ssr: process.env.SSR,
debug: false,
},
},
// alias: {
// "@/": "./"
// },
experimental: {
renderJsonPayloads: false,
scanPageMeta: true,
},
compatibilityDate: '2024-04-03',
nitro: {
preset: 'bun',
},
vite: {
// Force optimize deps on these routes to prevent super laggy first time navigation in dev server.
// This eagerly scans all routes and components and optimizes their dependencies first, rather than later.
// If you want a faster start-up comment out the "optimizeDeps"
build: {
sourcemap: true,
rollupOptions: {
treeshake: true,
// plugins: [terser({
// compress: {
// defaults: false,
// drop_console: true,
// },
// mangle: {
// eval: true,
// module: true,
// toplevel: true,
// safari10: true,
// properties: false,
// },
// output: {
// comments: false,
// },
// })],
},
},
optimizeDeps: {
entries: ['./components/**', './pages/**'],
},
},
hooks: {
'prerender:routes'({ routes }) {
if (process.env.SSR === 'true') return
routes.clear() // Do not generate any routes (except the defaults)
},
},
eslint: {
config: {
stylistic: true,
},
checker: true,
},
piniaPersistedstate: {
storage: 'cookies',
cookieOptions: {
sameSite: 'lax',
secure: false,
httpOnly: false,
},
debug: false,
},
shadcn: {
/**
* Prefix for all the imported component
*/
prefix: '',
/**
* Directory that the component lives in.
* @default "./components/ui"
*/
componentDir: './components/ui',
},
})