export default { singular: true, plugins: [ ['umi-plugin-react', { antd: true, dva: true, locale: { enable: true, }, }], ], routes: [ { path: '/', component: '../layout', routes: [ { path: '/', component: './index' }, { path: 'user', component: './user' }, { path: 'work', component: './work' }, ] } ], proxy: { '/dev': { target: 'https://08ad1pao69.execute-api.us-east-1.amazonaws.com', changeOrigin: true, }, }, };