# การ Deploy & Production ของ Next.js (React / Next.js) > การ deploy บน Vercel, Docker, environment variables, กลยุทธ์การแคช, การติดตาม, logging - 20 คำถามสัมภาษณ์ - Senior - [คำถามสัมภาษณ์: React / Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions.md) ## 1. Vercel Platform คืออะไรในบริบทของการ deploy Next.js? **คำตอบ** Vercel Platform คือแพลตฟอร์ม cloud-native ที่ออกแบบมาเฉพาะสำหรับ Next.js โดยนำเสนอการ deploy แบบ zero-config พร้อมการตรวจจับ framework อัตโนมัติ แพลตฟอร์มนี้ปรับแต่ง build โดยอัตโนมัติ กำหนดค่า Edge Network ทั่วโลก และเปิดใช้งานการแคชอัจฉริยะโดยไม่ต้องตั้งค่าเอง ต่างจากโซลูชันทั่วไปอย่าง AWS หรือ Azure ตรง Vercel ถูกปรับแต่งให้เหมาะกับฟีเจอร์ Next.js เช่น ISR, Middleware และ Server Components เพื่อประสิทธิภาพสูงสุด ## 2. จะเปิดเผย environment variable ให้ browser ใน Next.js ได้อย่างไร? **คำตอบ** ตัวแปรที่มีคำนำหน้า NEXT_PUBLIC_ จะถูกเปิดเผยให้ client โดยอัตโนมัติและรวมอยู่ใน JavaScript bundle ระหว่างการ build ตัวแปรที่ไม่มีคำนำหน้านี้จะอยู่ที่ฝั่ง server เท่านั้นและไม่ถูกส่งไปยังเบราว์เซอร์ เพื่อรักษาความปลอดภัยของ secret ความแตกต่างนี้ช่วยให้จัดการ API key สาธารณะอย่าง NEXT_PUBLIC_STRIPE_KEY ได้ในขณะที่ปกป้อง secret สำคัญอย่างคีย์ส่วนตัวของ Stripe ## 3. คำสั่งใดใช้สร้าง production build ของ Next.js? **คำตอบ** คำสั่ง next build สร้างเวอร์ชัน production ที่ปรับแต่งแล้วของแอปพลิเคชัน รวมถึงการบีบอัดโค้ด การปรับแต่งรูปภาพ การสร้างหน้าแบบสแตติก และการ bundle assets ขั้นตอนนี้จำเป็นต้องทำก่อน deploy เนื่องจากสร้างโฟลเดอร์ .next ที่มีไฟล์ที่ปรับแต่งแล้วทั้งหมด คำสั่ง next start จะเปิดตัว server production โดยใช้ build ที่ปรับแต่งนี้ ## มีอีก 17 คำถาม - ควรใช้ Docker image ใดเป็นฐานสำหรับการสร้าง container ของ Next.js? - จะกำหนดค่า environment variables ใน Vercel ได้ที่ไหน? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ React / Next.js อื่นๆ - [พื้นฐาน JavaScript](https://sharpskill.dev/th/technologies/react-next/interview-questions/javascript-essentials.md): 25 คำถาม, Junior - [พื้นฐาน React](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-fundamentals.md): 20 คำถาม, Junior - [React Hooks](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-hooks.md): 22 คำถาม, Junior - [วงจรชีวิตของ component](https://sharpskill.dev/th/technologies/react-next/interview-questions/component-lifecycle.md): 18 คำถาม, Junior - [React Router](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-router.md): 20 คำถาม, Junior - [การจัดการ state ด้วย Context](https://sharpskill.dev/th/technologies/react-next/interview-questions/state-management-context.md): 18 คำถาม, Junior - [ฟอร์มและ Controlled Components](https://sharpskill.dev/th/technologies/react-next/interview-questions/forms-controlled-components.md): 20 คำถาม, Mid-Level - [การดึงข้อมูลและ API](https://sharpskill.dev/th/technologies/react-next/interview-questions/fetching-data-api.md): 20 คำถาม, Mid-Level - [React Query (TanStack Query)](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-query-tanstack.md): 20 คำถาม, Mid-Level - [Styling & CSS-in-JS](https://sharpskill.dev/th/technologies/react-next/interview-questions/styling-css-in-js.md): 18 คำถาม, Mid-Level - [พื้นฐาน Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-fundamentals.md): 25 คำถาม, Mid-Level - [TypeScript กับ React](https://sharpskill.dev/th/technologies/react-next/interview-questions/typescript-react.md): 20 คำถาม, Mid-Level - [การดึงข้อมูล Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-data-fetching.md): 24 คำถาม, Mid-Level - [Server Actions ของ Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-server-actions.md): 20 คำถาม, Mid-Level - [การกำหนดเส้นทางและการนำทางใน Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-routing-navigation.md): 22 คำถาม, Mid-Level - [API Routes ใน Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-api-routes.md): 20 คำถาม, Mid-Level - [Metadata & SEO ใน Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-metadata-seo.md): 18 คำถาม, Mid-Level - [Middleware และ Auth ใน Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-middleware-auth.md): 22 คำถาม, Mid-Level - [การทดสอบ React](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-testing.md): 20 คำถาม, Mid-Level - [Zustand State Management](https://sharpskill.dev/th/technologies/react-next/interview-questions/zustand-state-management.md): 18 คำถาม, Mid-Level - [การเพิ่มประสิทธิภาพ React](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-performance-optimization.md): 22 คำถาม, Senior - [Error Boundaries & การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-error-boundaries.md): 18 คำถาม, Senior - [Advanced React Patterns](https://sharpskill.dev/th/technologies/react-next/interview-questions/advanced-react-patterns.md): 20 คำถาม, Senior - [ฟีเจอร์ขั้นสูงของ Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-advanced-features.md): 24 คำถาม, Senior - [Architecture & Design Patterns](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-architecture-patterns.md): 22 คำถาม, Senior - [React Server Components](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-server-components.md): 26 คำถาม, Senior - [การแปลภาษา Next.js](https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-internationalization.md): 20 คำถาม, Senior - [React ความปลอดภัย & แนวปฏิบัติที่ดีที่สุด](https://sharpskill.dev/th/technologies/react-next/interview-questions/react-security-best-practices.md): 22 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/react-next/interview-questions/nextjs-deployment-production