Skip to content

Instantly share code, notes, and snippets.

@satya164
Last active November 25, 2024 00:07
Show Gist options
  • Save satya164/3e7a62a1fe6f0d52378febbf7731e892 to your computer and use it in GitHub Desktop.
Save satya164/3e7a62a1fe6f0d52378febbf7731e892 to your computer and use it in GitHub Desktop.
Vite setup for React Native Web
<style>
html,
body {
height: 100%;
}
#root {
display: flex;
height: 100%;
}
</style>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
<script type="module">
import { AppRegistry } from 'react-native';
AppRegistry.runApplication('main', {
initialProps: {},
rootTag: document.getElementById('root'),
});
</script>
import { esbuildFlowPlugin, flowPlugin } from '@bunchtogether/vite-plugin-flow';
import react from '@vitejs/plugin-react';
import commonjs from 'vite-plugin-commonjs';
const extensions = [
'.web.tsx',
'.tsx',
'.web.ts',
'.ts',
'.web.jsx',
'.jsx',
'.web.js',
'.js',
'.web.mjs',
'.mjs',
'.json',
];
/** @type {import('vite').UserConfig} */
export default {
plugins: [commonjs(), react(), flowPlugin()],
define: {
'global': 'window',
'__DEV__': JSON.stringify(process.env.NODE_ENV !== 'production'),
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
},
resolve: {
extensions: extensions,
alias: {
'react-native': 'react-native-web',
},
},
build: {
commonjsOptions: {
transformMixedEsModules: true,
},
},
optimizeDeps: {
esbuildOptions: {
resolveExtensions: extensions,
jsx: 'automatic',
loader: {
'.js': 'jsx',
},
plugins: [esbuildFlowPlugin(undefined, () => 'jsx')],
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment