0
0
Fork 0
mirror of https://github.com/alerta/alerta-webui.git synced 2025-03-18 06:12:51 +00:00
alerta_alerta-webui/vue.config.js

19 lines
375 B
JavaScript
Raw Permalink Normal View History

2019-08-16 15:09:04 +00:00
process.env.VUE_APP_VERSION = require('./package.json').version
2019-01-17 17:07:37 +00:00
module.exports = {
2019-05-03 07:53:29 +00:00
publicPath: process.env.BASE_URL,
chainWebpack: config => {
config.module
.rule('fonts')
.use('url-loader')
.loader('url-loader')
.options({
limit: 4096,
name: 'fonts/[name].[ext]'
})
},
2019-01-17 17:07:37 +00:00
devServer: {
disableHostCheck: true
}
}