Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

전체 페이지 Prerender 비활성화 및 ISR 활성화 #364

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ export default defineConfig({
],
],
},
output: "hybrid",
adapter: vercel(),
output: "server",
adapter: vercel({
isr: {
expiration: 180,
},
}),
});
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "astro dev",
"start": "astro dev",
"check": "pnpm typecheck && pnpm lint",
"typecheck": "astro check --tsconfig tsconfig.astro.json && tsc --noEmit",
"typecheck": "astro check",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"build": "astro build",
Expand All @@ -18,46 +18,46 @@
"react-dom": "npm:@preact/compat@latest"
},
"dependencies": {
"@astrojs/check": "^0.5.4",
"@astrojs/mdx": "^2.1.1",
"@astrojs/preact": "^3.1.0",
"@astrojs/check": "^0.5.9",
"@astrojs/mdx": "^2.2.0",
"@astrojs/preact": "^3.1.1",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/ts-plugin": "^1.5.2",
"@astrojs/vercel": "^7.3.1",
"@astrojs/ts-plugin": "^1.6.0",
"@astrojs/vercel": "^7.3.6",
"@eslint/js": "^8.57.0",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/material-symbols": "^1.1.74",
"@iconify-json/simple-icons": "^1.1.92",
"@iconify-json/material-symbols": "^1.1.75",
"@iconify-json/simple-icons": "^1.1.95",
"@preact/compat": "^17.1.2",
"@preact/signals": "^1.2.2",
"@rollup/plugin-yaml": "^4.1.2",
"@shikijs/rehype": "^1.1.3",
"@shikijs/transformers": "^1.1.3",
"@shikijs/rehype": "^1.2.0",
"@shikijs/transformers": "^1.2.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.56.3",
"@types/eslint": "^8.56.5",
"@types/eslint__js": "^8.42.3",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@unocss/eslint-plugin": "^0.58.5",
"@unocss/preset-icons": "^0.58.5",
"@unocss/preset-wind": "^0.58.5",
"@unocss/reset": "^0.58.5",
"astro": "^4.4.0",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@unocss/eslint-plugin": "^0.58.6",
"@unocss/preset-icons": "^0.58.6",
"@unocss/preset-wind": "^0.58.6",
"@unocss/reset": "^0.58.6",
"astro": "^4.5.4",
"astro-eslint-parser": "^0.16.3",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"date-fns": "^3.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"fuse.js": "^7.0.0",
"js-yaml": "^4.1.0",
Expand All @@ -67,8 +67,8 @@
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-mdxjs": "^3.0.0",
"monaco-editor": "^0.46.0",
"preact": "^10.19.5",
"monaco-editor": "^0.47.0",
"preact": "^10.19.6",
"pretendard": "^1.3.9",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
Expand Down Expand Up @@ -130,12 +130,12 @@
"satori": "^0.10.13",
"sharp": "^0.33.2",
"ts-pattern": "^5.0.8",
"typescript": "^5.3.3",
"unocss": "^0.58.5"
"typescript": "^5.4.2",
"unocss": "^0.58.6"
},
"pnpm": {
"patchedDependencies": {
"@shikijs/rehype@1.1.3": "patches/@shikijs__rehype@1.1.3.patch",
"@shikijs/rehype@1.2.0": "patches/@shikijs__rehype@1.2.0.patch",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
Expand Down
File renamed without changes.
Loading