Initial WebUI code not exposed to public yet.
This commit is contained in:
31
frontend/nuxt.config.ts
Normal file
31
frontend/nuxt.config.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
// 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')
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user