mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
30 lines
835 B
JavaScript
30 lines
835 B
JavaScript
import adapter from '@sveltejs/adapter-vercel';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
import { preprocessMeltUI } from '@melt-ui/pp';
|
|
import { mdsvex } from 'mdsvex';
|
|
import mdsvexConfig from './mdsvex.config.js';
|
|
import relativeImages from 'mdsvex-relative-images';
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
extensions: ['.svelte', ...mdsvexConfig.extensions],
|
|
preprocess: [vitePreprocess(), mdsvex(mdsvexConfig), preprocessMeltUI()],
|
|
vitePlugin: {
|
|
inspector: {
|
|
toggleKeyCombo: 'control-alt-shift',
|
|
showToggleButton: 'always',
|
|
toggleButtonPos: 'bottom-right'
|
|
}
|
|
},
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
$root: './src'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|