From 1f96bd03b7c8856b9e8e21b6226a018bc3895901 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 22 Feb 2022 11:55:28 +0300 Subject: [PATCH] Update svelte.config.js --- svelte.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 67ead8df6..31d7af086 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -3,7 +3,10 @@ import adapter from '@sveltejs/adapter-static' /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { - adapter: adapter() + adapter: adapter({ + pages: 'docs', + assets: 'docs' + }) } }