Update dependency @sveltejs/kit to v1.0.0-next.324 #3

Merged
niggl merged 8 commits from renovate/sveltejs-kit-1.x into main 2022-04-30 15:37:27 +00:00
3 changed files with 4 additions and 1 deletions
Showing only changes of commit d4c69f2723 - Show all commits

View File

@ -1,4 +1,5 @@
{ {
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {

View File

@ -6,6 +6,9 @@ const config = {
kit: { kit: {
// hydrate the <div id="svelte"> element in src/app.html // hydrate the <div id="svelte"> element in src/app.html
adapter: staticAdapter(), adapter: staticAdapter(),
prerender: {
default: true
},
files: { files: {
assets: 'static' assets: 'static'
}, },

View File

@ -1,7 +1,6 @@
const config = { const config = {
mode: 'jit', mode: 'jit',
darkMode: 'media', darkMode: 'media',
purge: ['./src/**/*.{html,js,svelte,ts}'],
theme: { theme: {
extend: {} extend: {}
}, },