15 lines
264 B
JavaScript
15 lines
264 B
JavaScript
import adapter from "@sveltejs/adapter-node";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: { $components: "src/components" },
|
|
},
|
|
compilerOptions: {
|
|
runes: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|