Prepare Dockerfile, still missing Nginx into the image.

This commit is contained in:
2025-03-26 23:08:55 +01:00
parent e994430d28
commit 0d4c71926d
4 changed files with 154 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
import {preprocessMeltUI, sequence} from "@melt-ui/pp";
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-node';
import {vitePreprocess} from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config}*/
const config = {
@@ -7,9 +7,6 @@ const config = {
// for more information about preprocessors
preprocess: sequence([vitePreprocess(), preprocessMeltUI()]),
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
};