Skip to content

Commit

Permalink
Fix SPA options and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kay-xr committed Jun 25, 2024
1 parent 2db8c0f commit efed9aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "SpectreVRC",
"version": "0.1.5"
"version": "0.1.6"
},
"tauri": {
"allowlist": {
Expand Down
3 changes: 3 additions & 0 deletions src/routes/worlds/[slug]/+page.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import type { PageLoad } from './$types';

export const prerender = false;

export const load: PageLoad = ({ params }) => {
return {
post: {
Expand Down
4 changes: 3 additions & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const config = {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
adapter: adapter({
fallback: '404.html'
})
}
};

Expand Down

0 comments on commit efed9aa

Please sign in to comment.