mirror of
https://github.com/SoPat712/my-portfolio.git
synced 2025-08-21 18:28:46 -04:00
16 lines
377 B
JavaScript
16 lines
377 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: {
|
|
// Use the Netlify adapter with a specified output directory if desired.
|
|
adapter: adapter({
|
|
out: "build",
|
|
}),
|
|
},
|
|
};
|
|
|
|
export default config;
|