├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── server-dev.js ├── server-prod.js ├── src ├── app.jsx ├── entry-client.jsx └── entry-server.jsx ├── vite.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/package.json -------------------------------------------------------------------------------- /server-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/server-dev.js -------------------------------------------------------------------------------- /server-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/server-prod.js -------------------------------------------------------------------------------- /src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/src/app.jsx -------------------------------------------------------------------------------- /src/entry-client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/src/entry-client.jsx -------------------------------------------------------------------------------- /src/entry-server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/src/entry-server.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/simple-react-ssr-vite-express/HEAD/yarn.lock --------------------------------------------------------------------------------