32 lines
733 B
TypeScript
32 lines
733 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
import path from "path";
|
|
|
|
export default defineNuxtConfig({
|
|
ssr: false,
|
|
devtools: {enabled: true},
|
|
app: {
|
|
head: {
|
|
"meta": [
|
|
{"charset": "utf-8"},
|
|
{"name": "viewport", "content": "width=device-width, initial-scale=1.0, maximum-scale=1.0"},
|
|
{"name": "theme-color", "content": "#000000"}
|
|
],
|
|
},
|
|
buildAssetsDir: "assets",
|
|
},
|
|
router: {
|
|
options: {
|
|
linkActiveClass: "is-active",
|
|
}
|
|
},
|
|
modules: [
|
|
'@vueuse/nuxt',
|
|
],
|
|
nitro: {
|
|
output: {
|
|
publicDir: path.join(__dirname, 'exported')
|
|
}
|
|
},
|
|
})
|