Select Git revision
vue.config.js

Hanna Führ authored and
Petar Hristov
committed
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
vue.config.js 353 B
module.exports = {
devServer: {
disableHostCheck: true,
},
publicPath: "./",
configureWebpack: {
devtool: "source-map",
devServer: {
port: 7936,
},
},
filenameHashing: false,
chainWebpack: (config) => {
config.optimization.delete("splitChunks");
},
css: {
extract: false,
},
runtimeCompiler: true,
};