Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: __vite_ssr_import_5__.default.div is not a function [fixed] #4275

Open
leo1104 opened this issue Mar 8, 2024 · 0 comments
Open

Comments

@leo1104
Copy link

leo1104 commented Mar 8, 2024

I was getting this weird issue when using React + Vite + Styled-Components + SSR + SWC with @swc/plugin-styled-components

This is how my vite config file looks like:

import { defineConfig, splitVendorChunkPlugin } from 'vite';
import react from '@vitejs/plugin-react-swc';
import { nodePolyfills } from 'vite-plugin-node-polyfills';

// https://vitejs.dev/config/
export default defineConfig({
	esbuild: {
		drop: ['console', 'debugger']
	},
	plugins: [
		react({
			plugins: [['@swc/plugin-styled-components', {
				displayName: true,
				fileName: true,
				ssr: true,
			}]]
		}),
		nodePolyfills(),
		splitVendorChunkPlugin()
	],
});

Solved this by changing the import statement to:
import {styled} from styled-components;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant