refactor: remove vercel deps
This commit is contained in:
parent
8ea7d80f77
commit
1fa6d31102
6 changed files with 23 additions and 317 deletions
3
apps/blog/.gitignore
vendored
3
apps/blog/.gitignore
vendored
|
@ -32,9 +32,6 @@ yarn-error.log*
|
|||
# local env files
|
||||
.env*.local
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
|
2
apps/main/.gitignore
vendored
2
apps/main/.gitignore
vendored
|
@ -1,4 +1,2 @@
|
|||
.vercel/
|
||||
|
||||
# testing
|
||||
/test-results
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"build": "vite build",
|
||||
"test:unit": "TZ=UTC jest",
|
||||
"test:e2e": "playwright test",
|
||||
"clean": "rm -rf .turbo .svelte-kit .vercel test-results build node_modules vite.config.ts.timestamp-*",
|
||||
"clean": "rm -rf .turbo .svelte-kit test-results build node_modules vite.config.ts.timestamp-*",
|
||||
"lint": "eslint ."
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"@fontsource/noto-sans-kr": "^5.0.5",
|
||||
"@inqling/svelte-icons": "^3.5.0",
|
||||
"@playwright/test": "^1.36.2",
|
||||
"@sveltejs/adapter-vercel": "^5.3.0",
|
||||
"@sveltejs/adapter-static": "^3.0.5",
|
||||
"@sveltejs/kit": "^2.5.7",
|
||||
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
||||
"@types/jest": "^29.5.12",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import adapter from "@sveltejs/adapter-vercel"
|
||||
import adapter from "@sveltejs/adapter-static"
|
||||
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
|
@ -9,7 +9,7 @@ const config = {
|
|||
paths: {
|
||||
relative: false,
|
||||
},
|
||||
adapter: adapter({ runtime: "edge" }),
|
||||
adapter: adapter(),
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue