mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2024-11-23 17:13:12 +03:00
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||
|
export default defineNuxtConfig({
|
||
|
css: ['vuetify/lib/styles/main.sass', '@mdi/font/css/materialdesignicons.min.css',],
|
||
|
ssr: false,
|
||
|
build: {
|
||
|
transpile: ['vuetify'],
|
||
|
},
|
||
|
vite: {
|
||
|
define: {
|
||
|
'process.env.DEBUG': false,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
|