Skip to content

Instantly share code, notes, and snippets.

@jasmo2
Last active April 15, 2025 17:36
Show Gist options
  • Save jasmo2/1c8632c730a2a99e70dfff91b62823fe to your computer and use it in GitHub Desktop.
Save jasmo2/1c8632c730a2a99e70dfff91b62823fe to your computer and use it in GitHub Desktop.
/*
Vite and styles components using babel
https://stackoverflow.com/a/71453876/26576455
https://github.com/styled-components/babel-plugin-styled-components/issues/350#issuecomment-979873241
npm i babel-plugin-styled-components
*/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [
[
'babel-plugin-styled-components',
{
displayName: true,
fileName: false
}
]
]
}
})
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment