mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
16 lines
279 B
JavaScript
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/'
|
|
}
|
|
}
|
|
}
|
|
}
|