All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m34s
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
// import adapter from '@sveltejs/adapter-auto';
|
|
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: { adapter: adapter() }
|
|
};
|
|
|
|
export default config;
|