mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-18 08:43:56 +00:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
$components: 'src/lib/components',
|
|
$assets: 'src/lib/assets',
|
|
$types: 'src/lib/types.ts',
|
|
$lib: 'src/lib'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|