.umirc.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { defineConfig } from '@umijs/max';
  2. export default defineConfig({
  3. antd: {},
  4. title: '大方无隅科技有限公司',
  5. metas: [
  6. { name: 'keywords', content: '深圳大方无隅科技有限公司,大方无隅科技有限公司,互联网信息服务,互联网数据服务,计算机系统服务,系统集成' },
  7. {
  8. name: 'description',
  9. content: '深圳大方无隅科技有限公司成立于2016年,专注于为智慧城市、教育、医疗、快消、消费电子数码等行业提供技术解决方案与营销服务。2021年创立“开邻”品牌,专注渠道价格舆情管控、新媒体内容营销和政企客户软件定制化方向。同时,作为企微生态和抖音生态服务商,通过自研SaaS系统,为客户提供一站式数字化营销服务。团队以效率第一的服务宗旨,以精益求精的服务理念,致力于赋能客户AI数字基建与商业价值增长。',
  10. },
  11. ],
  12. define: {
  13. 'process.env.NODE_ENV': process.env.NODE_ENV,
  14. 'process.env.API_HOST': process.env.API_HOST,
  15. },
  16. base: '/',
  17. publicPath: '/',
  18. outputPath: 'home',
  19. layout: false,
  20. routes: [
  21. {
  22. path: '/',
  23. redirect: '/home',
  24. },
  25. {
  26. name: '首页',
  27. path: '/home',
  28. component: './Home',
  29. },
  30. {
  31. name: '获取方案',
  32. path: '/solution',
  33. component: './Solution',
  34. },
  35. {
  36. name: '隐私政策',
  37. path: '/privacy',
  38. component: './Privacy',
  39. },
  40. {
  41. name: '用户协议',
  42. path: '/agreement',
  43. component: './Agreement',
  44. },
  45. ],
  46. npmClient: 'yarn',
  47. });