Skip to content

Commit

Permalink
chore: move deployment to raw Node server
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Aug 3, 2024
1 parent fac94b9 commit 6062eff
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 320 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ jobs:
run: pnpm lint:js
- name: Check Svelte
run: pnpm --filter=drap-app lint:svelte
- name: Build App
run: pnpm --filter=drap-app build
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@linthtml/linthtml": "^0.10.1",
"@linthtml/linthtml-config-recommended": "^0.1.0",
"@skeletonlabs/tw-plugin": "^0.4.0",
"@sveltejs/adapter-vercel": "^5.4.1",
"@sveltejs/adapter-node": "^5.2.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
Expand Down
7 changes: 5 additions & 2 deletions app/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import adapter from '@sveltejs/adapter-vercel';
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
/**
* @import { Config } from '@sveltejs/kit'
* @type {Config}
*/
export default {
extensions: ['.svelte'],
preprocess: vitePreprocess(),
Expand Down
Loading

0 comments on commit 6062eff

Please sign in to comment.