Web: allow setting title of webapp

Moving `static/*` to `public/*` actually made Vue pick up our `index.html`,
and allow us to set the app title.
This commit is contained in:
Sybren A. Stüvel 2022-04-07 16:14:29 +02:00
parent 0a9f0c43f6
commit 528dec9c50
3 changed files with 13 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="">
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

12
web/app/vue.config.js Normal file
View File

@ -0,0 +1,12 @@
/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
pages: {
index: {
entry: 'src/main.js',
title: 'Flamenco',
},
}
}