mlpcardgame/vue.config.js

17 lines
272 B
JavaScript
Raw Permalink Normal View History

module.exports = {
2019-10-16 08:31:03 +00:00
configureWebpack: {
devServer: {
disableHostCheck: true,
host: "0.0.0.0"
}
},
publicPath: process.env.SUBPATH ? process.env.SUBPATH : "/",
pluginOptions: {
gitDescribe: {
variableName: "GIT_DESCRIBE"
}
}
};