programing

ie 11에서 실행되는 Nuxt.js 설정 방법

nicescript 2022. 8. 16. 22:15
반응형

ie 11에서 실행되는 Nuxt.js 설정 방법

사용하고 있습니다.Nuxt.js @ v2.13.2그리고 나는 내 프로젝트를 구성하려고 합니다.ie 11

의사는 다음과 같이 말합니다.

The default targets of @nuxt/babel-preset-app are ie: '9' in the client build, and node: 'current' in the server build.

여기 제 것이 있습니다.nuxt.config.js

build: {
    babel: {
      presets({ isServer }, [ preset, options ]) {
        // change options directly
        options.buildTarget = 'client'
        options.targets = {
          ie: 11,
        }
      }
    }
}

그리고 나의 페이지

import Amplify from 'aws-amplify';
import awsconfig from './aws-exports';

Amplify.configure(awsconfig);

근데 안 돼요.ie 11

[object Error]{description: "Syntax error", message: "Syntax error", name: "SyntaxError", number: -2146827286, stack: "SyntaxError...", Symbol(amplify_default)_i.icdaor5bqh3: undefined, Symbol(extensions)_k.icdaor5bqh3: undefined, Symbol(observable)_j.icdaor5bqh3: undefined, Symbol(react.element)_h.icdaor5bqh3: undefined

어떻게 감사해야 할지.

제가 알기로는 심볼 폴리필이 크로스 레름 네이티브 기능을 지원하지 않거나 지원할 수 없는 것이 문제입니다.

자세한 내용은 이쪽:https://github.com/zloirock/core-js/issues/834

언급URL : https://stackoverflow.com/questions/62669009/how-to-config-nuxt-js-runing-on-ie-11

반응형