umijs配置spa本地浏览器打开

2020-02-07  本文已影响0人  第2世界

.umirc.ts

import { IConfig } from 'umi-types'; // ref: https://umijs.org/config/

const config: IConfig = {
  history: 'hash',
  publicPath: "./",
  exportStatic: {
    dynamicRoot: true,
  },
  treeShaking: true,
  targets: {
    ie: 11,
  },
  routes: [
    {
      // routes here
    }
  ],
  plugins: [
    // plugins
  ],
};
export default config;
上一篇下一篇

猜你喜欢

热点阅读