next.js
Hello Next.js !
ํ๋ก์ ํธ ์์ฑ
yarn init
yarn add next react react-dom
yarn dev //๋จผ์ ์๋ ๋ฌธ๊ตฌ๋ฅผ ์ถ๊ฐํด์ค์ผ ํฉ๋๋ค.pakage.json์ ๋ค์ ์ถ๊ฐ
"scripts": {
"dev": "next"
}pages
import React from "react"; //์์ด๋ ์์ด๋ ๋ฌด๊ด
export default function index() {
return <div>Hello.next</div>;
}
ํ์ด์ง์ ๋ ์ด์์
page
Components

Link

esLint
Last updated