diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index bedd1301..23fae023 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -22,6 +22,7 @@ todo: manifest / favicon convert to green/blue shirt from yellow todo: client build, turn off generating manifest.json as I have a static one already +todo: service workers for monaco going in root of website folder, must be a config setting to move it into the proper place (not there) todo: login, large view, branded logo and footer text not centered equally? diff --git a/ayanova/vue.config.js b/ayanova/vue.config.js index 92589c7a..d9e4676e 100644 --- a/ayanova/vue.config.js +++ b/ayanova/vue.config.js @@ -1,7 +1,7 @@ const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin"); module.exports = { //https://medium.com/@mrodal/how-to-make-lazy-loading-actually-work-in-vue-cli-3-7f3f88cfb102 - chainWebpack: config => { + chainWebpack: (config) => { config.plugins.delete("prefetch"); }, @@ -10,6 +10,7 @@ module.exports = { new MonacoWebpackPlugin({ // available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options //https://github.com/Microsoft/monaco-editor-webpack-plugin + // publicPath: "./js/", languages: [ "javascript", "css",