oktaysenkan / monicon

Universal Icon Library
https://monicon-docs.vercel.app
247 stars 9 forks source link

Babel plugin #5

Closed pee0803 closed 1 year ago

pee0803 commented 1 year ago

Hi there,

I am first try to use iconify in react native. I have followed the steps provided in Readme.md to add the plugin in babel.config.js, and clear cache for my project. But it turns out an error like the image below.

Simulator Screenshot - iPhone 14 Pro - 2023-09-21 at 15 07 48

Screenshot 2023-09-21 at 15 11 37

I would like to humbly seek your advice to resolve this issue. Thanks in advance.

oktaysenkan commented 1 year ago

Check your presets and plugins properties babel.config.js. What is env.production.plugins ?

module.exports = {
  presets: [
    ...
  ],
  plugins: [
    ...
    'react-native-iconify/plugin',
  ],
};
pee0803 commented 1 year ago

I have figured out and the this issue is fixed. Thank you very much.