Last active
November 25, 2024 00:07
-
-
Save satya164/3e7a62a1fe6f0d52378febbf7731e892 to your computer and use it in GitHub Desktop.
Vite setup for React Native Web
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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