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