thomaswilson-sveltekit/svelte.config.js

22 lines
488 B
JavaScript
Raw Normal View History

import adapter from "@sveltejs/adapter-node";
import preprocess from "svelte-preprocess";
2022-04-16 10:43:45 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: [".svelte", ".md"],
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [preprocess()],
2022-04-16 10:43:45 +00:00
kit: {
adapter: adapter({ split: false }),
env: {
publicPrefix: "PUBLIC_",
privatePrefix: "PRIVATE_",
2026-03-01 08:52:30 +00:00
},
},
2022-04-16 10:43:45 +00:00
};
export default config;