mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
preliminary app name and noscript message
This commit is contained in:
parent
bd0c4e4abd
commit
9b34b9de8c
3 changed files with 14 additions and 7 deletions
|
@ -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 -->
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue