.umirc.js 663 B

12345678910111213141516171819202122
  1. export default {
  2. // exportStatic: {
  3. // // htmlSuffix: true,
  4. // dynamicRoot: false,
  5. // },
  6. // nodeModulesTransform:{
  7. // type: 'none'
  8. // },
  9. targets: {
  10. ie: 11,
  11. },
  12. links: [ { rel: 'icon', href: 'http://questnet.cn/image/logo2.png' }, ],
  13. title:'趣程官网',
  14. mountElementId: 'root12312',
  15. routes: [
  16. { path: '/', component: '@/pages/Home/index.jsx', title: 'Index' },
  17. { path: '/about', component: '@/pages/About/index.jsx', title: 'About' },
  18. { path: '/introduce', component: '@/pages/Introduce/index.jsx', title: 'Introduce' },
  19. { path: '/contact', component: '@/pages/ContactUs/index.jsx', title: 'ContactUs' }
  20. ]
  21. }