Upload files to "/"

This commit is contained in:
2025-12-16 21:34:12 +00:00
commit bc987d6e7e
5 changed files with 299 additions and 0 deletions

14
svelte.config.js Normal file
View File

@@ -0,0 +1,14 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
version: {
name: process.env.VERSION || 'development', // Use VERSION environment variable, default to 'development'
},
},
};
export default config;