Skip to content

Commit

Permalink
build 안 깨지게 수정 & export 떼기
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeonsu committed Jan 24, 2025
1 parent 7d16644 commit fdd3e85
Show file tree
Hide file tree
Showing 66 changed files with 753 additions and 24 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ yarn-error.log*

# others
.env*.local
.env
.vercel
next-env.d.ts
*storybook.log
Expand Down
2 changes: 2 additions & 0 deletions docs/app/api/draft-mode/disable/route.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export const runtime = "edge";

import { draftMode } from "next/headers";
import { NextRequest, NextResponse } from "next/server";

Expand Down
2 changes: 2 additions & 0 deletions docs/app/api/draft-mode/enable/route.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export const runtime = "edge";

import { defineEnableDraftMode } from "next-sanity/draft-mode";
import { client } from "@/sanity/lib/client";
import { viewerToken } from "@/sanity/env.server";
Expand Down
2 changes: 0 additions & 2 deletions docs/content/docs/design/foundation/iconography/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
title: Overview
description: 아이콘은 사용자가 복잡한 정보나 기능을 빠르게 이해할 수 있도록 도와주는 디자인 요소입니다.
---

<SanityGuideline title="Iconography" />
2 changes: 0 additions & 2 deletions docs/content/docs/design/foundation/iconography/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
title: Usage
description: 아이콘과 다른 디자인 요소 간의 상호작용 및 아이콘 사용 방법에 대해 설명합니다.
---

<SanityGuideline title="Icon 사용법" />
2 changes: 0 additions & 2 deletions docs/content/docs/design/guidelines/loading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
title: Loading
description: 로딩을 관리하는 데 필요한 요소, 시간에 따른 적합한 선택지와 단계별로 사용자 경험을 최적화하는 방법에 대해 소개합니다.
---

<SanityGuideline title="Loading" />
1 change: 0 additions & 1 deletion docs/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const withMDX = createMDX();

/** @type {import('next').NextConfig} */
const config = {
output: "export",
reactStrictMode: true,
transpilePackages: [
"@seed-design/react-tabs",
Expand Down
7 changes: 6 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"sanity:build": "sanity build",
"postinstall": "fumadocs-mdx",
"gen": "yarn generate:all",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy",
"generate:all": "yarn generate:registry && yarn generate:example && yarn generate:rootage",
"generate:registry": "vite-node scripts/generate-registry.ts",
"generate:example": "vite-node scripts/generate-example.ts",
Expand Down Expand Up @@ -67,6 +70,7 @@
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@cloudflare/next-on-pages": "^1.13.7",
"@storybook/addon-essentials": "^8.4.4",
"@storybook/addon-interactions": "^8.4.4",
"@storybook/addon-onboarding": "^8.4.4",
Expand All @@ -86,7 +90,8 @@
"tailwindcss": "^3.4.10",
"ts-pattern": "^5.5.0",
"typescript": "^5.5.4",
"vite-node": "^2.1.2"
"vite-node": "^2.1.2",
"wrangler": "^3.105.0"
},
"ultra": {
"concurrent": [
Expand Down
Loading

0 comments on commit fdd3e85

Please sign in to comment.