Skip to content

Commit

Permalink
fix(qiankun): lodash bundled all (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycjcl868 committed Feb 26, 2021
1 parent afc144c commit ebb7a68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/plugin-qiankun/src/master/MicroApp.tsx.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import {
import React, { useEffect, useRef, useState } from 'react';
// @ts-ignore
import { useModel, History } from 'umi';
import { concat, mergeWith, noop } from 'lodash';
import concat from 'lodash/concat';
import mergeWith from 'lodash/mergeWith';
import noop from 'lodash/noop';
import { BrowserHistoryBuildOptions, HashHistoryBuildOptions, MemoryHistoryBuildOptions, } from 'history-with-query';

const qiankunStateForSlaveModelNamespace = '@@qiankunStateForSlave';
Expand Down

0 comments on commit ebb7a68

Please sign in to comment.