···1-# Welcome to Remix!
23-- 📖 [Remix docs](https://remix.run/docs)
45-## Development
67-Run the dev server:
8-9-```shellscript
10-npm run dev
11-```
1213-## Deployment
01415-First, build your app for production:
1617-```sh
18-npm run build
19```
20-21-Then run the app in production mode:
22-23-```sh
24-npm start
25```
2627-Now you'll need to pick a host to deploy it to.
2829-### DIY
3031-If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
32-33-Make sure to deploy the output of `npm run build`
34-35-- `build/server`
36-- `build/client`
37-38-## Styling
39-40-This template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever css framework you prefer. See the [Vite docs on css](https://vitejs.dev/guide/features.html#css) for more information.