mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-24 03:31:12 +01:00
- Database schema for notification services and history tracking - Notifier interface with Discord webhook implementation - UI for creating/editing/managing notification services - Integration with job completion events - Service-level enable/disable and notification type filtering - Test notifications and notification history view
31 lines
743 B
JavaScript
31 lines
743 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',
|
|
'$logger/*': './src/utils/logger/*',
|
|
$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',
|
|
$utils: './src/utils',
|
|
$notifications: './src/notifications',
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|