mirror of
https://github.com/creativetimofficial/muse-vue-ant-design-dashboard.git
synced 2025-08-16 11:31:10 +08:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
module.exports = {
|
|
runtimeCompiler: true,
|
|
chainWebpack: config => {
|
|
config
|
|
.plugin('html')
|
|
.tap(args => {
|
|
args[0].title = 'Muse Dashboard - Ant Design Vue'
|
|
return args
|
|
})
|
|
}
|
|
}
|