Skip to content
GitHub

Vercel Deployment, Environment Variables & SEO

1. Metadata API ဖြင့် SEO Optimization ပြုလုပ်ခြင်း

Section titled “1. Metadata API ဖြင့် SEO Optimization ပြုလုပ်ခြင်း”

Next.js App Router တွင် Page တိုင်းအတွက် Metadata များကို Type-safe အဖြစ် သတ်မှတ်နိုင်ပါတယ်:

// app/page.tsx သို့မဟုတ် app/layout.tsx
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Takkatho Dev - Learning Platform",
description: "မြန်မာ နည်းပညာနှင့် AI သင်ခန်းစာများ",
openGraph: {
title: "Takkatho Dev - Learning Platform",
description: "မြန်မာ နည်းပညာနှင့် AI သင်ခန်းစာများ",
images: ["/og-image.png"],
},
};

Secrets (Database Password, API Keys) များကို .env.local တွင် ထည့်သွင်းပါ:

# Server-only Environment Variable (Client သို့ မရောက်ပါ)
DATABASE_URL="postgres://user:password@localhost:5432/mydb"
OPENAI_API_KEY="sk-proj-123456..."
# Client-accessible Environment Variable (NEXT_PUBLIC_ ဖြင့် စရမည်)
NEXT_PUBLIC_SITE_URL="https://takkatho.dev"

3. Vercel ပေါ်သို့ Deploy ပြုလုပ်နည်း ၃ မျိုး

Section titled “3. Vercel ပေါ်သို့ Deploy ပြုလုပ်နည်း ၃ မျိုး”
graph LR
A[GitHub Repository Push] --> B[Vercel Automatic CI/CD Pipeline]
B --> C[Global Edge Network Deploy]
C --> D[Live SSL URL - my-app.vercel.app]

နည်းလမ်း ၁: GitHub Integration (အလွယ်ဆုံးနှင့် အကြံပြုချက်)

Section titled “နည်းလမ်း ၁: GitHub Integration (အလွယ်ဆုံးနှင့် အကြံပြုချက်)”
  1. GitHub Repository သို့ Code များကို Push လုပ်ပါ။
  2. Vercel Dashboard သို့ ဝင်ရောက်၍ Import Project ပြုလုပ်ပါ။
  3. Environment Variables များကို တိုးမြှင့် ထည့်သွင်း၍ Deploy ကို နှိပ်ပါ။
  4. နောက်ပိုင်းတွင် GitHub သို့ git push ပြုလုပ်တိုင်း Vercel မှ အလိုအလျောက် CI/CD Build & Deploy ပြုလုပ်သွားမည် ဖြစ်ပါတယ်။

နည်းလမ်း ၂: Vercel CLI ဖြင့် Deploy ခြင်း

Section titled “နည်းလမ်း ၂: Vercel CLI ဖြင့် Deploy ခြင်း”
Terminal window
# Vercel CLI install လုပ်ခြင်း
npm i -g vercel
# Project Root Folder တွင် Command ရိုက်နှိပ်၍ Deploy ခြင်း
vercel

4. Image Optimization (<Image /> Component)

Section titled “4. Image Optimization (<Image /> Component)”

Layout Shift (CLS Error) များကို ကာကွယ်ရန်နှင့် WebP Format သို့ အလိုအလျောက် ပြောင်းလဲပေးရန် Next.js ၏ <Image /> ကို သုံးပါ:

import Image from "next/image";
import profilePic from "@/assets/profile.jpg";
export default function Profile() {
return (
<Image
src={profilePic}
alt="User Profile"
placeholder="blur" // Loading ချိန်တွင် Blur ကြိုပြပေးသည်
className="rounded-full"
/>
);
}