使用Angular 5,我构建了一个解决方案,并希望将其部署到服务器。使用ng build --prod --base-href=https:test.com/_catalogs/masterpage/Custom/ng5qrcode/dist
我已将dist
文件夹移至正确的路径,并将index.html文件添加到正确在Chrome中运行的SharePoint Web部件,但在IE中,CSS和JS路径被引用为https://test.com/Pages/CSSorJSfilename
。 SharePoint网页的网址为https://test.com/Pages/ng5qrcode.aspx
我使用了所有推荐的polyfills:
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
import 'classlist.js'; // Run `npm install --save classlist.js`.
/** Evergreen browsers require these. **/
import 'core-js/es6/reflect';
import 'core-js/es7/reflect';
/**
* Required to support Web Animations `@angular/animation`.
* Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
**/
import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/***************************************************************************************************
* Zone JS is required by Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
每次创建新版本时都不更改index.html文件路径,如何解决此问题?