mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2024-11-23 17:13:12 +03:00
26 lines
512 B
TypeScript
26 lines
512 B
TypeScript
{af3524de69124e1c1e2872a6d75bfd6716e8e981 true 512 nuxt.config.ts 0xc002b387e0}
// 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'],
|
|
}
|
|
},
|
|
})
|
|
|