diff --git a/web/app/static/favicon.ico b/web/app/public/favicon.ico similarity index 100% rename from web/app/static/favicon.ico rename to web/app/public/favicon.ico diff --git a/web/app/static/index.html b/web/app/public/index.html similarity index 96% rename from web/app/static/index.html rename to web/app/public/index.html index 3e5a1396..afea9378 100644 --- a/web/app/static/index.html +++ b/web/app/public/index.html @@ -1,5 +1,5 @@ - + diff --git a/web/app/vue.config.js b/web/app/vue.config.js new file mode 100644 index 00000000..c450d8fe --- /dev/null +++ b/web/app/vue.config.js @@ -0,0 +1,12 @@ + +/** + * @type {import('@vue/cli-service').ProjectOptions} + */ +module.exports = { + pages: { + index: { + entry: 'src/main.js', + title: 'Flamenco', + }, + } +}