.umirc.js 475 B

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