mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-24 19:51:03 +01:00
22 lines
445 B
JavaScript
22 lines
445 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',
|
|
$stores: './src/stores',
|
|
$components: './src/components',
|
|
$static: './src/static'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|