location / { #root html; root E:\workspace\activiti-designer\dist; # Nginx启动本地前端 index index.html index.htm; }
Nginx启动页面成功之后,index.html乱码
解决:
在index.html添加:<meta charset="utf-8">
<head> <!--设置编码防止中文乱码--> <meta charset="utf-8"> <title>bpmn-js modeler demo</title>
Nginx配置文件conf\nginx.conf里配置
server { # 中文乱码处理 default_type 'text/html'; charset utf-8;
清空浏览器缓存重试正常!