You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
518 B
19 lines
518 B
import { name } from './package.json';
|
|
|
|
export default {
|
|
history: { type: 'hash' },
|
|
base: name,
|
|
publicPath: '/helloworld/',
|
|
outputPath: './dist/helloworld',
|
|
mountElementId: 'helloworld',
|
|
qiankun: {
|
|
slave: {},
|
|
},
|
|
plugins: [
|
|
require.resolve('../../node_modules/@umijs/plugin-dva/lib'),
|
|
require.resolve('../../node_modules/@umijs/plugin-model/lib'),
|
|
require.resolve('../../node_modules/@umijs/plugin-antd/lib'),
|
|
require.resolve('../../node_modules/@umijs/plugin-qiankun/lib'),
|
|
],
|
|
};
|