ci) add gitea actions and refresh readme #1

Merged
shaun merged 18 commits from ci/gitea-actions-readme into main 2026-02-21 04:33:49 +00:00
2 changed files with 15 additions and 15 deletions
Showing only changes of commit 6e02e5128a - Show all commits

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;

View File

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