DEV Community

Discussion on: Migrating your React app from Webpack to Vite

Collapse
 
wojtekmaj profile image
Wojciech Maj • Edited

An extra tip:

When using Yarn >=2, during installation, you'll get a ton of warnings about esbuild:

The … architecture is incompatible with the this module, link skipped.

You can suppress them by adding the following to yarnrc.yml:

logFilters:
  - code: YN0076
    level: discard
Enter fullscreen mode Exit fullscreen mode