diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..73acc92 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,14 @@ +// vite.config.js +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [ + react({ + jsxImportSource: '@emotion/react', + babel: { + plugins: ['babel-plugin-styled-components'], + }, + }), + ], +});