vitejs / vite-plugin-react-swc

Speed up your Vite dev server with SWC
MIT License
778 stars 50 forks source link

i have a build error for this plugin #89

Closed MrWangJustToDo closed 1 year ago

MrWangJustToDo commented 1 year ago

image when i usee vite-plugin-react, every thing work fine. but when i switch to use this plugin, i have a build error. i have not idea why this happen. here is my repo link https://github.com/MrWangJustToDo/react-ssr-setup

hope someone can give me any help, thanks

ArnaudBarre commented 1 year ago

Hi,

The difference is that the swc plugin is not "pre" transform, so you need to put it before other plugins in the plugins list so that they don't have parsing issues with JSX

MrWangJustToDo commented 1 year ago

thanks a lot! now everything works perfectly