Skip to content

Latest commit

Β 

History

History
59 lines (50 loc) Β· 1.28 KB

File metadata and controls

59 lines (50 loc) Β· 1.28 KB

This is a Next.js boilerplate for the course Nextjs Sanbercode

Getting Started πŸš€

  • First, Clone this repository βœ…
  • Run command npm install or yarn install for install dependencies and wait until it's finished
  • After that, you can run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
  • And can view the results through a browser Nextjs Project.

Stack this project πŸ•ΈοΈ

  • Nextjs (Pages Router) βœ…
  • React βœ…
  • Eslint βœ…
  • Prettier βœ…
  • Typescript βœ…

Custom VScode Settings

The configuration below can be viewed through the root folder .vscode/settings.json

{
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[javascriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "eslint.format.enable": true,
  "eslint.lintTask.enable": true,
  "eslint.validate": [
    "javascript",
    "typescript",
    "typescriptreact",
    "javascriptreact"
  ]
}