cobalt/web/svelte.config.js

57 lines
1.6 KiB
JavaScript
Raw Normal View History

import adapter from '@sveltejs/adapter-static';
2024-06-29 18:58:00 +01:00
import { mdsvex } from 'mdsvex';
import { fileURLToPath } from 'node:url';
import { dirname, join } from 'node:path';
import { sveltePreprocess } from 'svelte-preprocess';
2024-06-13 10:32:17 +01:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
2024-06-29 18:58:00 +01:00
extensions: [".svelte", ".md"],
preprocess: [
{
name: "strip-announcer",
markup: ({ content: code }) => {
code = code.replace(
/<div id="svelte-announcer" [\s\S]*?<\/div>/,
'<svelte:component this={null} />'
);
return { code }
}
},
sveltePreprocess(),
2024-06-29 18:58:00 +01:00
mdsvex({
extensions: ['.md'],
layout: join(
dirname(fileURLToPath(import.meta.url)),
'/src/components/changelog/ChangelogEntryWrapper.svelte'
2024-06-29 18:58:00 +01:00
)
})
],
2024-06-13 10:32:17 +01:00
kit: {
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: '404.html',
precompress: false,
strict: true
}),
2024-07-23 11:04:43 +01:00
version: {
pollInterval: 60000
},
paths: {
relative: false
},
alias: {
$components: 'src/components',
$i18n: 'i18n',
}
}
2024-06-13 10:32:17 +01:00
};
export default config;