fix build and format files to match code style

This commit is contained in:
2022-06-18 19:26:58 +03:00
parent d5a7a0c031
commit 928e025114
17 changed files with 265 additions and 229 deletions

View File

@@ -1,6 +1,6 @@
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
import icons from 'unplugin-icons/vite'
import adapter from "@sveltejs/adapter-static";
import preprocess from "svelte-preprocess";
import icons from "unplugin-icons/vite";
import { mdsvex } from "mdsvex";
/** @type {import('@sveltejs/kit').Config} */
@@ -23,10 +23,13 @@ const config = {
vite: {
plugins: [
icons({
compiler: 'svelte',
}),
],
compiler: "svelte"
})
]
},
prerender: {
default: true
}
}
};