mirror of
https://github.com/promplate/pyth-on-line.git
synced 2025-09-06 20:53:20 +00:00

Some checks are pending
javascript checks / check (macos) (push) Waiting to run
javascript checks / check (ubuntu) (push) Waiting to run
javascript checks / check (windows) (push) Waiting to run
python checks / check (push) Waiting to run
spell check / typos (push) Waiting to run
20 lines
384 B
JavaScript
20 lines
384 B
JavaScript
import adapter from "@sveltejs/adapter-netlify";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
"$py/*": "src/python/*",
|
|
},
|
|
output: {
|
|
preloadStrategy: "preload-mjs",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|