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