ng打包
1.在项目完成后进行项目打包
2.输入ng build后会出现dist打包文件
3.在打包文件中有一个文件index.html文件,改变html中的一个参数
- <base href="/">改为<base href="./">
- 在app.module中引入 HashLocationStrategy,LocationStrategy
import {HashLocationStrategy,LocationStrategy} from '@angular/common'在providers 中进行声明 providers: [{provide:LocationStrategy,useClass:HashLocationStrategy}] 注意不要把声明写错,否则会报错
- 更改.assest静态资源文件的路径要使用相对路径