mirror of
https://github.com/LowderPlay/cheburcheck.git
synced 2026-09-25 07:48:02 +03:00
* feat: change to ssr * fix: move route to nginx * fix: rename yaml * ci: add deploy * fix: real ip
16 lines
399 B
JavaScript
16 lines
399 B
JavaScript
import adapter from "@sveltejs/adapter-node";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
compilerOptions: {
|
|
// Force runes mode for the project, except for libraries. Can be removed in svelte 6.
|
|
runes: ({ filename }) =>
|
|
filename.split(/[/\\]/).includes("node_modules") ? undefined : true,
|
|
},
|
|
kit: {
|
|
adapter: adapter({ out: "build" }),
|
|
},
|
|
};
|
|
|
|
export default config;
|