nextjs IE11 객체는 "attachShadow"속성이나 메서드를 지원하지 않습니다.

1470 단어
오류 보고: SCRIPT438: 객체는 "attachShadow"속성이나 메서드를 지원하지 않습니다.
1、 package.json
// +
"@webcomponents/shadydom": "^1.7.4",
 "next-transpile-modules": "^4.0.2",

2、next.config.js
const withTM = require('next-transpile-modules');
// ...
    const originalEntry = config.entry;
    config.entry = async () => {
      const entries = await originalEntry();
      // add custom polyfills into specific next.js bundle
      // https://github.com/zeit/next.js/issues/10794
      const nextPolyfillPath = 'static/runtime/polyfills.js';
      const nextPolyfills = entries[nextPolyfillPath];
      if (nextPolyfills) {
        entries[nextPolyfillPath] = [
          nextPolyfills,
          './src/client/polyfills.js',
        ];
      }
      return entries;
    };
// ...
module.exports = withPlugins(
  [withTM],
  nextConfig,
);

3、add src/client/polyfills.js
//   shadydom.min.js
import '@webcomponents/webcomponentsjs';
import '@webcomponents/shadydom';
//   trunc 
import 'core-js/features/math/trunc';


참고 1, nextjs 내장polyfill:https://github.com/vercel/next.js/blob/0923ee6db49c20e1f28363199caf176f164d05b7/packages/next-polyfill-nomodule/src/index.js
2、core.js :https://github.com/zloirock/core-js/tree/master/packages/core-js/features
3、https://github.com/webcomponents/polyfills

좋은 웹페이지 즐겨찾기