https://github.com/dev-shimada/nextjs-tutorial
https://github.com/dev-shimada/nextjs-tutorial
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dev-shimada/nextjs-tutorial
- Owner: dev-shimada
- Created: 2024-11-15T03:53:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-05T05:49:57.000Z (about 1 year ago)
- Last Synced: 2025-04-05T06:27:03.175Z (about 1 year ago)
- Language: TypeScript
- Size: 1020 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nextjs-tutorial
- https://nextjs.org/learn-pages-router/basics/create-nextjs-app/setup
This project is a tutorial for building a Next.js application.
## Getting Started
Follow the instructions below to get started with the project.
### Prerequisites
- Node.js 18 or higher
- npm (Node Package Manager)
### Installation
1. Clone the repository:
```sh
git clone
cd nextjs-blog
```
2. Install the dependencies:
```sh
npm install
```
### Running the Development Server
To start the development server, run the following command:
```sh
npm run dev --prefix ./nextjs-blog/
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
### Building for Production
To build the project for production, run:
```sh
npm run build --prefix ./nextjs-blog/
```