如何让Angular 7应用兼容microsoft edge浏览器?

问题描述 投票:1回答:1

我们有一个Angular 7应用程序,我们已经开发了几个月了。 到目前为止,我们的应用程序与IE,Chrome,Firefox兼容,现在我们正在测试微软边缘浏览器。 该应用程序将无法在旧版MS Edge浏览器中运行。 最新版本的edge可以正常运行,但是我们的一个测试者使用的是旧版本的edge,需要与应用程序兼容。 她正在使用的版本是

Microsoft Edge 44.17763.1.0Microsoft EdgeHTML 18.17763@2018 Microsoft

***************************************************************************************************
 * BROWSER 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';

在我们的index.html文件中,我们有这样的内容。

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="utf-8" />
    <title>MYAPP</title>
    <base href="/" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="icon" type="image/x-icon" href="" />
  </head>

  <body>
    <app-root></app-root>
  </body>

</html>
angular7 microsoft-edge compatibility
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.