You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
458 B
29 lines
458 B
|
|
export default {
|
|
hash: true,
|
|
// exportStatic: {
|
|
// htmlSuffix: true,
|
|
// dynamicRoot: true,
|
|
// },
|
|
title:"长沙一个地球网络科技有限公司",
|
|
antd: {},
|
|
targets: {
|
|
ie: 11,
|
|
},
|
|
// 路由
|
|
routes: [
|
|
{
|
|
exact: true,
|
|
path: '/',
|
|
redirect: '/index',
|
|
},
|
|
{
|
|
path: '/index',
|
|
component: '@/pages/Index',
|
|
},
|
|
{
|
|
path: '/download',
|
|
component: '@/pages/Download',
|
|
},
|
|
],
|
|
}
|
|
|