1、刷新后就报404,应该要怎么改?
解决:
如果使用nginx服务器,加上try_files配置:
location / {
......
try_files $uri /index.html;
}
2、使用browserHistory时不能刷新,报错:Uncaught SyntaxError: Unexpected token <
解决:
在index.html中修改 .js 引入路径,使用绝对地址进行引入!
例如:
使用绝对路径引入: