| 1234567891011121314151617 |
- /*
- * 运行时配置:不参与 webpack 打包,构建后位于 dist/runtime-config.js
- * 部署后可直接修改本文件中的 title,无需重新 npm run build。
- */
- (function () {
- window.__RUNTIME_CONFIG__ = {
- /** 浏览器标签与登录页大标题(修改此处即可) */
- title: "机组健康评估与性能检测系统",
- // title:'风电机组智能健康状态评估系统', //健康评估
- // title:'风电机组性能检测系统', //异常检测
- // title: "风电机组隐患识别及健康状态评估系统", //吉林项目名称
- };
- if (typeof document !== "undefined" && window.__RUNTIME_CONFIG__.title) {
- document.title = window.__RUNTIME_CONFIG__.title;
- }
- })();
|