Fix more bugs (x2)

This commit is contained in:
Santiago Lo Coco 2024-04-23 17:40:41 +02:00
parent a69e9e47a3
commit e79b57e2ac
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@ const config = {
// Use different adapters based on the environment.
// For GitHub Pages deployment, use svelte-adapter-ghpages.
// For local development, you can use a different adapter like @sveltejs/adapter-static or any other suitable one.
adapter: process.env.NODE_ENV === 'production' ? adapterGhpages() : adapter(),
adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({
pages: 'build',
assets: 'build',
fallback: null
}) : adapter(),
paths: {
base: process.env.NODE_ENV === 'production' ? "/BreakOften" : "",
},