13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
|
/**
|
|||
|
* 多页应用配置,只需要配置基础路径即可。
|
|||
|
*/
|
|||
|
|
|||
|
const pagesConfig = {
|
|||
|
index: {
|
|||
|
template: 'public/index.html',
|
|||
|
title: 'vue-element-admin-webpack'
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
module.exports = pagesConfig
|