Files
playtool-demo/nuxt.config.ts
2025-01-02 22:04:00 +01:00

77 lines
1.1 KiB
TypeScript

export default defineNuxtConfig({
modules: [
"@vueuse/nuxt",
"@unocss/nuxt",
"@nuxt/icon",
"@nuxt/fonts",
"nuxt-svgo",
"@nuxt/eslint"
],
app: {
head: {
title: "Nuxtor",
charset: "utf-8",
viewport: "width=device-width, initial-scale=1",
meta: [
{ name: "format-detection", content: "no" }
],
},
pageTransition: {
name: "page",
mode: "out-in"
},
layoutTransition: {
name: "layout",
mode: "out-in"
}
},
css: [
"@unocss/reset/tailwind.css"
],
fonts: {
defaults: {
weights: [`${100}..${900}`]
}
},
icon: {
mode: "svg"
},
svgo: {
autoImportPath: "@/assets/"
},
ssr: false,
dir: {
modules: "app/modules"
},
vite: {
clearScreen: false,
envPrefix: ["VITE_", "TAURI_"],
server: {
strictPort: true,
hmr: {
protocol: "ws",
host: "0.0.0.0",
port: 3001
},
watch: {
ignored: ["**/src-tauri/**"]
}
}
},
devServer: {
host: "0.0.0.0"
},
eslint: {
config: {
standalone: false
}
},
experimental: {
typedPages: true
},
future: {
compatibilityVersion: 4
},
compatibilityDate: "2025-01-01"
});