upgrade auf svelte5

This commit is contained in:
titver968
2025-04-08 11:13:23 +02:00
parent 31570ff196
commit a7f9a2b4a9
85 changed files with 8596 additions and 23 deletions

8
src/lib/minio.js Normal file
View File

@@ -0,0 +1,8 @@
/** import Minio from 'minio'; */
import { Client } from 'minio';
import config from '$lib/config';
/** process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0'; */
/** export const client = new Minio.Client(config.minio); */
export const client = new Client(config.minio);