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> </head>
<body> <body>
<noscript> <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> </noscript>
<div id="app"></div> <div id="app"></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->

View file

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

View file

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