-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
786f037
commit 49e792a
Showing
7 changed files
with
23 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ vite.config.js.timestamp-* | |
.test-tmp | ||
symlink-from | ||
.idea/ | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
// import adapter from '@sveltejs/adapter-auto'; | ||
// import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; | ||
// | ||
// /** @type {import('@sveltejs/kit').Config} */ | ||
// const config = { | ||
// // Consult https://kit.svelte.dev/docs/integrations#preprocessors | ||
// // for more information about preprocessors | ||
// preprocess: vitePreprocess(), | ||
// | ||
// 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() | ||
// } | ||
// }; | ||
// | ||
// export default config; | ||
import adapter from '@sveltejs/adapter-node'; | ||
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; | ||
|
||
import sveltePreprocess from 'svelte-preprocess'; | ||
|
||
export default { | ||
// Consult https://github.com/sveltejs/svelte-preprocess | ||
// for more information about preprocessors | ||
preprocess: sveltePreprocess() | ||
/** @type {import('@sveltejs/kit').Config} */ | ||
const config = { | ||
// Consult https://kit.svelte.dev/docs/integrations#preprocessors | ||
// for more information about preprocessors | ||
preprocess: vitePreprocess(), | ||
// | ||
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() | ||
} | ||
}; | ||
|
||
export default config; | ||
|