mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
99 lines
2.9 KiB
JavaScript
99 lines
2.9 KiB
JavaScript
import "dotenv/config";
|
|
import adapter from "@sveltejs/adapter-static";
|
|
|
|
import { mdsvex } from "mdsvex";
|
|
import { fileURLToPath } from "node:url";
|
|
import { dirname, join } from "node:path";
|
|
import { sveltePreprocess } from "svelte-preprocess";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
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(),
|
|
mdsvex({
|
|
extensions: ['.md'],
|
|
layout: {
|
|
about: join(
|
|
dirname(fileURLToPath(import.meta.url)),
|
|
'/src/components/misc/AboutPageWrapper.svelte'
|
|
),
|
|
changelogs: join(
|
|
dirname(fileURLToPath(import.meta.url)),
|
|
'/src/components/changelog/ChangelogEntryWrapper.svelte'
|
|
)
|
|
}
|
|
})
|
|
],
|
|
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
|
|
}),
|
|
csp: {
|
|
mode: "hash",
|
|
directives: {
|
|
"connect-src": ["*"],
|
|
"default-src": ["none"],
|
|
|
|
"font-src": ["self"],
|
|
"style-src": ["self", "unsafe-inline"],
|
|
"img-src": ["*", "data:"],
|
|
"manifest-src": ["self"],
|
|
"worker-src": ["self"],
|
|
|
|
"object-src": ["none"],
|
|
"frame-src": [
|
|
"self",
|
|
"challenges.cloudflare.com"
|
|
],
|
|
|
|
"script-src": [
|
|
"self",
|
|
"wasm-unsafe-eval",
|
|
"challenges.cloudflare.com",
|
|
|
|
// eslint-disable-next-line no-undef
|
|
process.env.WEB_PLAUSIBLE_HOST ? process.env.WEB_PLAUSIBLE_HOST : "",
|
|
|
|
// hash of the theme preloader in app.html
|
|
"sha256-g67gIjM3G8yMbjbxyc3QUoVsKhdxgcQzCmSKXiZZo6s=",
|
|
]
|
|
}
|
|
},
|
|
env: {
|
|
publicPrefix: 'WEB_'
|
|
},
|
|
version: {
|
|
pollInterval: 60000
|
|
},
|
|
paths: {
|
|
relative: false
|
|
},
|
|
alias: {
|
|
$components: 'src/components',
|
|
$i18n: 'i18n',
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|