checkpoint before reversing changes to attempt to figure out insecure menu / grid link issues

This commit is contained in:
2020-10-01 14:27:05 +00:00
parent d0d6a3cab0
commit ed48036105
7 changed files with 68 additions and 32 deletions

View File

@@ -1,27 +1,28 @@
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
module.exports = {
configureWebpack: {
plugins: [
new MonacoWebpackPlugin({
// available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options
//https://github.com/Microsoft/monaco-editor-webpack-plugin
languages: [
"javascript",
"css",
"html",
"typescript",
"json",
"handlebars"
]
})
]
},
transpileDependencies: ["vuetify"],
pwa: {
workboxPluginMode: "InjectManifest",
workboxOptions: {
swSrc: "./src/sw.js",
swDest: "service-worker.js"
}
}
};
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
module.exports = {
configureWebpack: {
plugins: [
new MonacoWebpackPlugin({
// available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options
//https://github.com/Microsoft/monaco-editor-webpack-plugin
languages: [
"javascript",
"css",
"html",
"typescript",
"json",
"handlebars"
]
})
]
},
transpileDependencies: ["vuetify"],
pwa: {
name: "AyaNova",
workboxPluginMode: "InjectManifest",
workboxOptions: {
swSrc: "./src/sw.js",
swDest: "service-worker.js"
}
}
};