configure svelte to be no-ssr

This commit is contained in:
Yanick Champoux 2024-02-04 12:54:23 -05:00
parent a52712f447
commit 6ce020f6a1
4 changed files with 11 additions and 4 deletions

View File

@ -6,6 +6,9 @@ vars:
GREETING: Hello, World! GREETING: Hello, World!
tasks: tasks:
build:
cmds:
- vite build
update-game: update-game:
cmds: cmds:
- node src/scripts/updateUsers.js - node src/scripts/updateUsers.js

View File

@ -35,6 +35,7 @@
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"@sveltejs/adapter-node": "^4.0.1", "@sveltejs/adapter-node": "^4.0.1",
"@sveltejs/adapter-static": "^3.0.1",
"@vincjo/datatables": "^1.14.4", "@vincjo/datatables": "^1.14.4",
"beercss": "^3.4.13", "beercss": "^3.4.13",
"better-sqlite3": "^9.3.0", "better-sqlite3": "^9.3.0",

1
src/routes/+layout.js Normal file
View File

@ -0,0 +1 @@
export const prerender = true;

View File

@ -1,10 +1,12 @@
import adapter from '@sveltejs/adapter-node'; import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
const config = { const config = {
kit: { kit: {
adapter: adapter() adapter: adapter({
} fallback: '/index.html',
}),
},
}; };
export default config; export default config;