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:
parent
0a9f0c43f6
commit
528dec9c50
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -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
12
web/app/vue.config.js
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
/**
|
||||
* @type {import('@vue/cli-service').ProjectOptions}
|
||||
*/
|
||||
module.exports = {
|
||||
pages: {
|
||||
index: {
|
||||
entry: 'src/main.js',
|
||||
title: 'Flamenco',
|
||||
},
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user