aotds-docks/svelte.config.js

13 lines
251 B
JavaScript
Raw Normal View History

2023-03-03 23:02:52 +00:00
import preprocess from "svelte-preprocess";
2023-05-04 20:45:40 +00:00
import adapter from "@sveltejs/adapter-static";
2021-05-17 13:48:31 +00:00
/** @type {import('@sveltejs/kit').Config} */
2023-03-03 23:02:52 +00:00
const config = {
preprocess: preprocess(),
2023-05-04 20:45:40 +00:00
kit: {
adapter: adapter({}),
},
2021-05-17 13:48:31 +00:00
};
2023-03-03 23:02:52 +00:00
export default config;