Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sant0s12 committed Feb 26, 2024
1 parent 31f71cc commit ad4fa82
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ const config = {
// 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({
fallback: '404.html',
paths: {
base: process.argv.includes('dev') ? '' : process.env.BASE_PATH
}
})
fallback: '404.html'
}),

paths: {
base: process.argv.includes('dev') ? '' : process.env.BASE_PATH
}
}
};

Expand Down

0 comments on commit ad4fa82

Please sign in to comment.