Skip to content

Commit

Permalink
changed svelte path
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y committed Sep 2, 2024
1 parent b0b4b21 commit eacaa78
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
@@ -1,13 +1,14 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';

/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// 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(),
paths: {
base: process.argv.includes('dev') ? '' : process.env.BASE_PATH
}
}
};

export default config;

0 comments on commit eacaa78

Please sign in to comment.