mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
22 lines
460 B
TypeScript
22 lines
460 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: false },
|
|
compatibilityDate: "2024-07-04",
|
|
ssr: false,
|
|
app: {
|
|
head: {
|
|
charset: "utf-8",
|
|
viewport:
|
|
"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0",
|
|
},
|
|
},
|
|
vite: {
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
api: "modern-compiler",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|