mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-26 04:42:00 +01:00
19 lines
353 B
JavaScript
19 lines
353 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'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|