"Next.js is a React framework for building full-stack web applications. You use React Components to build user interfaces, and Next.js for additional features and optimizations."
This guide provides a first-hand experience on building a Next.js project with Tailwind CSS and deploying it on GitHub Pages using GitHub Actions.
1. Create your project.
# terminal
npx create-next-app@latest
And answer the next prompts based on your project specification needs. reference here
What is your project named? project_name
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? No / Yes
Would you like to use `src/` directory? No / Yes
Would you like to use App Router? (recommended) No / Yes
Would you like to customize the default import alias (@/*)? No / Yes
2. Start build process.
# terminal
npm run dev
3. Happy coding. ^^
<p className="text-red-400 font-bold mt-10">Tailwind is working.</p>
Sample project structure for reference.
my-nextjs-app/
├── public/
│ ├── images/
│ └── favicon.ico
├── src/
│ ├── components/
│ │ └── Header.js
│ ├── pages/
│ │ ├── api/
│ │ │ └── hello.js
│ │ └── index.js
│ ├── styles/
│ │ ├── globals.css
│ ├── utils/
│ │ └── helpers.js
│ └── hooks/
│ └── useExample.js
├── .gitignore
├── package.json
├── README.md
└── next.config.js
Deploying to github pages is totally up to you, be it through GitHub Actions, or via gh-pages package, or manually.
Note
Also take note that GitHub Pages have limitations, it's free, yes, but it has a limit.
1. Modify src paths.
// page.js
<Image
src="./vercel.svg"
alt="Vercel Logo"
className="dark:invert"
width={100}
height={24}
priority
/>
2. Modify next.config.mjs
to enable static exports. reference here
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
};
export default nextConfig;
3. Add actions
.
Use default action configuration from Settings > Pages
or use the .github/workflows/publish.yml
file.
4. Visit your deployed site in Settings > Page
. ^^
1. Create your project. Start coding your project, either use a framework like React, Vue, or not.
2. Publish production build to GitHub.
Push your production build to your github repo. After that, check if your index.html
file is uploaded, since it is one of the core files needed for your website to work.
3. Configure your GitHub Pages on repo Settings.
Navigate to Settings > Pages > Build and deployment
. Make sure the Source says 'Deploy from a branch', and then configure the Branch settings and change it to your branch with the files.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
🌎 kerbethecoder
📫 [email protected]
📌 July 30, 2024