mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2024-11-23 17:13:12 +03:00
25 lines
511 B
TypeScript
25 lines
511 B
TypeScript
{7a0b63ffd0b1389436d832a08c5100e6b16ae0e9 true 511 nuxt.config.ts 0xc001c3d5e0}
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
;(global as any).CSS = { supports: () => false }
|
|
|
|
export default defineNuxtConfig({
|
|
css: [
|
|
'vuetify/lib/styles/main.sass',
|
|
'@mdi/font/css/materialdesignicons.min.css'
|
|
],
|
|
ssr: false,
|
|
build: {
|
|
transpile: ['vuetify'],
|
|
},
|
|
// disable vite externals and ssr
|
|
vite: {
|
|
optimizeDeps: {
|
|
exclude: ['vuetify'],
|
|
},
|
|
ssr: {
|
|
noExternal: ['vuetify'],
|
|
}
|
|
},
|
|
})
|
|
|