mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import react from '@vitejs/plugin-react';
|
|
|
|
export function createReactPlugin() {
|
|
return react({
|
|
babel: {
|
|
plugins: ['babel-plugin-react-compiler'],
|
|
},
|
|
});
|
|
}
|