How to setup Django with React using InertiaJS
Django 5 + React 19 + Inertia 2 + Vite 6 setup tutorial
Feb 2, 20257 min read545

Search for a command to run...
Articles tagged with #reactjs
Django 5 + React 19 + Inertia 2 + Vite 6 setup tutorial

If you want to add a class (className) to the body tag of a a NextJS page, you'll need to add it via JavaScript in the useEffect (or componentDidMount if you're using class-based components) Lifecycle function. This adds TailWindCSS's font-light and ...
If you want your React app to connect to MetaMask's web3, const web3 = new Web3(window.web3.currentProvider);will no longer work as suggested. We need to MetaMask to authorize the connection which is a manual process by clicking on a button to author...