Skip to content

Commit

Permalink
build: fix build params
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas committed Oct 27, 2024
1 parent d26e002 commit cd73d3f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"devDependencies": {
"@internationalized/date": "^3.5.6",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tauri-apps/api": "^2.0.3",
Expand Down
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"productName": "blaze",
"mainBinaryName": "blaze",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"identifier": "com.sqooid.blaze",
"plugins": {},
"app": {
"windows": [
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+layout.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const ssr = false
export const prerender = false
export const ssr = false;
export const prerender = true;
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
Expand Down

0 comments on commit cd73d3f

Please sign in to comment.