Files
profilarr/svelte.config.js
Sam Chau e24410f6f3 stack(arrConfig): implemented arr config handling
- database module + migrations handler
- http client class + arr client child (with connection pooling, retries, backoff)
- toast alerts
- add new arr configs
2025-10-20 02:13:09 +10:30

28 lines
634 B
JavaScript

import adapter from 'sveltekit-adapter-deno';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
usage: 'deno-compile'
}),
alias: {
$config: './src/utils/config/config.ts',
$logger: './src/utils/logger/logger.ts',
$stores: './src/stores',
$components: './src/components',
$static: './src/static',
$server: './src/server',
$db: './src/db',
$arr: './src/utils/arr',
$http: './src/utils/http',
$api: './src/utils/api/request.ts'
}
}
};
export default config;