반응형
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
반응형
'programing' 카테고리의 다른 글
Java 클래스가 로드되는 위치를 찾습니다. (0) | 2022.08.16 |
---|---|
Array List를 되돌리는 가장 간단한 방법은 무엇입니까? (0) | 2022.08.16 |
마우스 정지 후만 Vue 마우스 이동 (0) | 2022.08.16 |
Java에서 문자열 값에서 열거 값을 가져오는 방법 (0) | 2022.08.16 |
웹 팩 및 Vuejs 툴바와 함께 전체 PDF.js 뷰어를 사용하는 방법 (0) | 2022.08.16 |