react 7

.net core React docker image 만드는 법

.net core 기반 React 프로젝트를 Docker로 빌드 후 배포를 해보려고 합니다. 기본으로 제공되어있는 Dockfile로는 빌드가 진행되지 않고 실패가 떨어지게 될 것 입니다. RUN apt-get updateRUN apt-get install -y curlRUN apt-get install -y libpng-dev libjpeg-dev curl libxi6 build-essential libgl1-mesa-glxRUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -RUN apt-get install -y nodejs React는 node.js 위에서 동작을 하고 npm으로 설치되어있는 여러가지 라이브러리가 필요하기 때문인데요. ASP.NE..

Server/Docker 2023.04.03

[Next.js] Link 사용하기

Setup - Create a Next.js App | Learn Next.js (nextjs.org) Learn | Next.js Production grade React applications that scale. The world’s leading companies use Next.js by Vercel to build pre-rendered applications, static websites, and more. nextjs.org 참고하여 Next.js에 Navigate 기능인 Link를 달아보려고 합니다. 1. pages/posts/first-post.jsx를 생성해줍니다. import Link from 'next/link'; export default function FirstPost() {..

React/Next.js 2023.02.18

간단한 Next.js 프로젝트 만들어보기

Setup - Create a Next.js App | Learn Next.js (nextjs.org) Learn | Next.js Production grade React applications that scale. The world’s leading companies use Next.js by Vercel to build pre-rendered applications, static websites, and more. nextjs.org 참고하여 Next.js를 이용한 프로젝트를 만들어보려고 합니다. 1. 프로젝트 생성 # 프로젝트 세팅 npx create-next-app@latest nextjs-blog --use-npm --example "https://github.com/vercel/next-le..

React/Next.js 2023.02.18