Next.js TypeScript Boilerplate
A highly scalable and well-structured boilerplate for building modern web applications with Next.js and TypeScript. This setup includes essential features for development efficiency and performance optimization.
Follow these steps to get the Next.js TypeScript boilerplate up and running locally:
git clone https://github.com/hungds99/nextjs-typescript-boilerplate.git
cd nextjs-typescript-boilerplate
Make sure you have Node.js installed on your machine. Then, run the following command to install the required dependencies:
npm install
Run the following command to start the server locally:
npm run dev
This will start the development server on http://localhost:3000
. You can open this URL in your browser to see the app running.
When you're ready to build for production, use the following command:
npm run build
This will create an optimized production build.
You can deploy the app to Vercel, Netlify, or any other platform that supports Next.js. For Vercel, you can simply link your GitHub repository, and it will handle the rest.
Contributions are welcome! If you'd like to contribute, feel free to fork the repository and submit a pull request.