Skip to content

Instantly share code, notes, and snippets.

@SooJungChae
Created February 13, 2019 06:56
Show Gist options
  • Save SooJungChae/24fc0c18a60e2e529209ab40eb9d85c1 to your computer and use it in GitHub Desktop.
Save SooJungChae/24fc0c18a60e2e529209ab40eb9d85c1 to your computer and use it in GitHub Desktop.
Object doesn't support property or method 'find' error in IE

Development: Nuxt

Error: Object doesn't support property or method 'find'

Fix: Add 'babel-es6-polyfill' to nuxt.config.js

  1. Install babel npm install --save babel-es6-polyfill

  2. Add babel setting

build: {
  ...
  vendor: ['babel-es6-polyfill']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment