12345678910111213141516171819202122 |
- export default {
- // exportStatic: {
- // // htmlSuffix: true,
- // dynamicRoot: false,
- // },
- // nodeModulesTransform:{
- // type: 'none'
- // },
- targets: {
- ie: 11,
- },
- links: [ { rel: 'icon', href: 'http://questnet.cn/image/logo2.png' }, ],
- title:'趣程官网',
- mountElementId: 'root12312',
- routes: [
- { path: '/', component: '@/pages/Home/index.jsx', title: 'Index' },
- { path: '/about', component: '@/pages/About/index.jsx', title: 'About' },
- { path: '/introduce', component: '@/pages/Introduce/index.jsx', title: 'Introduce' },
- { path: '/contact', component: '@/pages/ContactUs/index.jsx', title: 'ContactUs' }
- ]
- }
|