feature/build (#1)
Some checks failed
CI / build-and-test (push) Has been cancelled
CI / build-and-test (pull_request) Has been cancelled

Co-authored-by: Tobias Klemp <tobias.klemp@v-office.com>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-01-01 18:55:05 +01:00
parent 42080520bf
commit 74b6092838
34 changed files with 1070 additions and 499 deletions

View File

@@ -1,5 +1,5 @@
import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import adapter from 'svelte-adapter-bun'
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
/** @type {import('@sveltejs/kit').Config} */
const config = {
@@ -7,7 +7,7 @@ const config = {
// for more information about preprocessors
preprocess: vitePreprocess(),
alias: {
"@/*": "./path/to/lib/*",
'@/*': './src/lib/*',
},
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
@@ -15,6 +15,6 @@ const config = {
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter(),
},
};
}
export default config;
export default config