Files
certd/packages/ui/certd-ui/vue.config.js
2021-02-09 16:30:59 +08:00

16 lines
279 B
JavaScript

module.exports = {
pages: {
index: {
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Cert-D'
}
},
devServer: {
proxy: {
'/': {
target: 'http://localhost:3000/'
}
}
}
}