frontend/vue.config.js

14 lines
229 B
JavaScript
Raw Normal View History

2021-01-15 23:24:15 +11:00
const Dotenv = require('dotenv-webpack');
module.exports = {
devServer: {
proxy: 'http://localhost:23981'
},
publicPath: '/',
productionSourceMap: false,
configureWebpack: {
plugins: [
new Dotenv()
]
}
}