初次提交,原始状态
This commit is contained in:
95
nuxt.config.ts
Normal file
95
nuxt.config.ts
Normal file
@@ -0,0 +1,95 @@
|
||||
export default defineNuxtConfig({
|
||||
modules: [
|
||||
"@vueuse/nuxt",
|
||||
"@nuxt/ui",
|
||||
"nuxt-svgo",
|
||||
"reka-ui/nuxt",
|
||||
"@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: [
|
||||
"@/assets/css/main.css"
|
||||
],
|
||||
icon: {
|
||||
customCollections: [
|
||||
{
|
||||
prefix: "local",
|
||||
dir: "./app/assets/icons"
|
||||
}
|
||||
]
|
||||
},
|
||||
svgo: {
|
||||
autoImportPath: "@/assets/"
|
||||
},
|
||||
ssr: false,
|
||||
dir: {
|
||||
modules: "app/modules"
|
||||
},
|
||||
imports: {
|
||||
presets: [
|
||||
{
|
||||
from: "zod",
|
||||
imports: [
|
||||
"z",
|
||||
{
|
||||
name: "infer",
|
||||
as: "zInfer",
|
||||
type: true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
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"
|
||||
},
|
||||
router: {
|
||||
options: {
|
||||
scrollBehaviorType: "smooth"
|
||||
}
|
||||
},
|
||||
eslint: {
|
||||
config: {
|
||||
standalone: false
|
||||
}
|
||||
},
|
||||
devtools: {
|
||||
enabled: false
|
||||
},
|
||||
experimental: {
|
||||
typedPages: true
|
||||
},
|
||||
compatibilityDate: "2025-07-01"
|
||||
});
|
Reference in New Issue
Block a user