DEV Community

Discussion on: Using emotionJs with Vite

Collapse
 
cretezy profile image
Charles Crete

I got it working with as little as:

export default defineConfig({
 plugins: [
    react({
      jsxImportSource: "@emotion/react",
    }),
  ],
});
Enter fullscreen mode Exit fullscreen mode
Collapse
 
ajitsinghkamal profile image
Ajit Singh Kamal • Edited

Yes, the post is quite old now. I wrote it when Vite was just released :)
Thanks for helping other wandering developers with your comment.