This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/vue.config.js
aldrin 6835240173 fix(deploy): Disable workbox import
This removes storage.googleapis.com from production package.
2021-05-12 09:20:56 +02:00

19 lines
298 B
JavaScript

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
outputDir: "build/webapp",
devServer: {
proxy: {
"/api": {
target: "http://localhost:8000",
},
},
},
pwa: {
workboxOptions: {
importWorkboxFrom: "disabled",
},
},
};