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

14 lines
218 B
JavaScript

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