14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { defineConfig } from '@umijs/max';
|
|
import routes from './routes';
|
|
|
|
export default defineConfig({
|
|
routes,
|
|
define: {
|
|
APP_ENV: 'production',
|
|
CABINET_HOST: '/cabinet/',
|
|
VIDEO_HOST: '/video/',
|
|
ALGORITHM_HOST: '/algorithm/',
|
|
MATERIAL_HOST: '/material/',
|
|
},
|
|
});
|