Build folder

This commit is contained in:
Giac
2025-12-09 16:14:15 -06:00
parent 50138d6b8b
commit 551a2ff325
4 changed files with 1518 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import adapter from '@sveltejs/adapter-auto';
//import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import path from 'path'
@@ -12,7 +13,15 @@ const config = {
// 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(),
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
strict: true
}),
alias: {
$components: path.resolve('./src/lib/components'),
}