
Moving `static/*` to `public/*` actually made Vue pick up our `index.html`, and allow us to set the app title.
13 lines
171 B
JavaScript
13 lines
171 B
JavaScript
|
|
/**
|
|
* @type {import('@vue/cli-service').ProjectOptions}
|
|
*/
|
|
module.exports = {
|
|
pages: {
|
|
index: {
|
|
entry: 'src/main.js',
|
|
title: 'Flamenco',
|
|
},
|
|
}
|
|
}
|