continuwuity/packages/website/svelte.config.js

46 lines
1.6 KiB
JavaScript

import "dotenv/config";
import { mdsvex } from "mdsvex";
import mdsvexConfig from "./mdsvex.config.js";
import adapter from "@sveltejs/adapter-node";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
// import htmlMinifierAdaptor from "sveltekit-html-minifier";
import cspDirectives from "./csp.js";
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md', '.svelte.md'],
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [mdsvex(mdsvexConfig), vitePreprocess()],
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter:
// Disabled html min as it runs after precompress
// htmlMinifierAdaptor(
adapter(),
// {
// pages: "build/prerendered/",
// minifierOptions: {
// minifyURLs: true,
// // Because of CSP hashing
// minifyJS: false, // We can pass a function here
// collapseWhitespace: false,
// sortAttributes: true,
// sortClassName: true,
// removeRedundantAttributes: true
// }
// }),
csp: {
mode: "auto",
directives: cspDirectives,
},
},
};
export default config;