Files
certd/packages/ui/certd-ui/vue.config.js
T

24 lines
402 B
JavaScript
Raw Normal View History

2021-01-24 00:36:53 +08:00
module.exports = {
2021-02-09 16:30:59 +08:00
pages: {
index: {
2021-02-09 17:19:00 +08:00
entry: 'src/main.js',
2021-02-09 16:30:59 +08:00
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Cert-D'
}
},
2021-01-21 23:59:06 +08:00
devServer: {
proxy: {
'/': {
target: 'http://localhost:3000/'
}
}
2021-02-09 17:19:00 +08:00
},
css: {
loaderOptions: {
less: {
javascriptEnabled: true
}
}
2021-01-21 23:59:06 +08:00
}
}