This page is only visible in development mode
docs/company-name/category/article-name.mdx
--- title: "한국어 제목" sidebar_label: "사이드바 라벨" original_url: "https://original-source.com" original_title: "Original English Title" original_author: "Author/Organization" license: "CC BY-NC-SA 4.0" translation_date: "2024-01-20" translator: "Translator Name" ---
import { ResourceDownload } from '@site/src/components/ContentComponents';src/components/ComponentName/ ├── index.tsx └── styles.module.css
src/components/ContentComponents/NewComponent.tsx
Don't forget to export from index.ts!
// In sidebars.ts
sidebarName: [
{
type: 'category',
label: '섹션 이름',
collapsed: false,
link: {
type: 'doc',
id: 'path/to/index',
},
items: [
'path/to/doc1',
'path/to/doc2',
],
},
],pnpm run build
# Full deployment workflow (test, commit, push, verify) git deploy "Your commit message" # Or using pnpm script pnpm run deploy:full "Your commit message" # Manual deployment options pnpm run deploy:netlify # Deploy to production pnpm run deploy:preview # Deploy preview
USE_SSH=true pnpm run deploy
ℹ️ See NETLIFY_DEPLOYMENT.md for detailed Netlify setup
pnpm startStart dev serverpnpm run typecheckCheck TypeScriptpnpm run buildBuild static sitepnpm run serveServe built sitepnpm run deploy:netlifyDeploy to Netlifynetlify statusCheck Netlify statusnetlify openOpen site in browsernetlify devLocal Netlify server