mirror of
https://github.com/zoriya/vike-react-native-web-bug.git
synced 2025-12-05 22:26:20 +00:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import ssr from "vike/plugin";
|
|
import react from "@vitejs/plugin-react";
|
|
import reactNativeWeb from "vite-plugin-react-native-web";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react({}), ssr({}), reactNativeWeb()],
|
|
});
|