欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angular build 之后,直接本地打开index.html运行

程序员文章站 2022-07-12 21:10:03
...

方法一,在开发过程中配置:

1.在src下的index.html中,删除<base href="/">;

2.配置tsconfig.json,找到target设置为es5;

"target": "es5"

 

方法二,在打包后dist中配置:

在生成的dist目录下,做以下操作:

1.在index.html中删除 <base href="/">;

2.在index.html中删除所有 script 的 type="module"属性。

 

相关标签: angular