preliminary app name and noscript message

This commit is contained in:
Jörn-Michael Miehe 2023-11-04 16:01:58 +00:00
parent bd0c4e4abd
commit 9b34b9de8c
3 changed files with 14 additions and 7 deletions

View file

@ -9,7 +9,7 @@
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
<strong>Es tut uns leid, aber <%= htmlWebpackPlugin.options.title %> funktioniert nicht richtig ohne JavaScript. Bitte aktivieren Sie es, um fortzufahren.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->

View file

@ -15,8 +15,8 @@ export const advent22Store = defineStore({
is_touch_device: check_touch_device(),
is_admin: false,
site_config: {
title: "Adventskalender",
subtitle: "Lorem Ipsum",
title: document.title,
subtitle: "",
content: "",
footer: "",
} as SiteConfigModel,

View file

@ -1,7 +1,14 @@
const { defineConfig } = require('@vue/cli-service')
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
host: 'localhost',
}
})
host: "localhost",
},
pages: {
index: {
entry: "src/main.ts",
title: "Kalender-Gewinnspiel",
},
},
});