- - npm deploy 만들기 { "scripts": { "build": "next build", "deploy": "next build && rsync -avzc --delete .next package.json package-lock.json public next.config.js user@your-server-ip:/path/to/your/app/" }}- swc로 컴파일 하도록 함npm install --save-dev @swc/plugin-emotion npm install @emotion/react @emotion/styled // next.config.mjs 파일 수정/** @type {import('next').NextConfig} */const nextConfig = {..