ci) use js svelte config for runner compatibility
Some checks failed
PR Checks / lint-test-and-docker-build (pull_request) Failing after 1m53s

This commit is contained in:
2026-02-20 22:39:02 -05:00
parent 02b3d3ca1f
commit 6e02e5128a
2 changed files with 15 additions and 15 deletions

15
svelte.config.js Normal file
View File

@@ -0,0 +1,15 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
paths: {
base: '/trips'
}
}
};
export default config;