This commit is contained in:
2020-09-30 14:28:54 +00:00
parent 2cd13b786d
commit 6f17ca41bf
3 changed files with 18 additions and 7 deletions

View File

@@ -1,6 +1,14 @@
// webpack.config.js
//this is required or the menu won't work properly
//in production (used to, something changed)
//https://github.com/vuetifyjs/vuetify/issues/5518
let whiteListedModules = ["vue", "vuetify"];
module.exports = {
externals: [
...Object.keys(dependencies || {}).filter(
d => !whiteListedModules.includes(d)
)
],
rules: [
{
test: /\.s(c|a)ss$/,