modified gamebnoard toml and dockerfile
This commit is contained in:
parent
9d1fc63464
commit
d9b0f9dbb7
6 changed files with 1088 additions and 9 deletions
|
|
@ -1,10 +1,11 @@
|
|||
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
|
||||
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
|
||||
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
||||
// import adapter from '@sveltejs/adapter-auto';
|
||||
import adapter from "@sveltejs/adapter-static";
|
||||
// import adapter from '@sveltejs/adapter-node';
|
||||
import adapter from '@sveltejs/adapter-node';
|
||||
// import adapter from "@sveltejs/adapter-static";
|
||||
|
||||
import { vitePreprocess } from "@sveltejs/kit/vite";
|
||||
import { vitePreprocess } from '@sveltejs/kit/vite';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
|
|
@ -13,12 +14,8 @@ const config = {
|
|||
preprocess: vitePreprocess(),
|
||||
kit: {
|
||||
adapter: adapter({
|
||||
// These are the defaults, see https://kit.svelte.dev/docs/adapter-static
|
||||
pages: "build",
|
||||
assets: "build",
|
||||
fallback: undefined,
|
||||
precompress: false,
|
||||
strict: true
|
||||
// This option specifies the output directory for the build
|
||||
out: 'build'
|
||||
})
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue