covidassist/vue.config.js

10 lines
168 B
JavaScript
Raw Normal View History

2020-03-22 20:18:18 +01:00
const { GenerateSW } = require("workbox-webpack-plugin");
2020-03-21 23:39:59 +01:00
module.exports = {
2020-03-22 20:18:18 +01:00
publicPath: "",
configureWebpack: {
plugins: [new GenerateSW()]
2020-03-21 23:39:59 +01:00
}
2020-03-22 20:18:18 +01:00
};