美文网首页
umijs配置spa本地浏览器打开

umijs配置spa本地浏览器打开

作者: 第2世界 | 来源:发表于2020-02-07 14:11 被阅读0次

    .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;
    

    相关文章

      网友评论

          本文标题:umijs配置spa本地浏览器打开

          本文链接:https://www.haomeiwen.com/subject/rsmmxhtx.html