diff --git a/jsconfig.json b/jsconfig.json index 3757b0e..fe1b5b6 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,4 +1,5 @@ { + "extends": "./.svelte-kit/tsconfig.json", "compilerOptions": { "baseUrl": ".", "paths": { diff --git a/svelte.config.js b/svelte.config.js index 7680239..1d3bb9b 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -6,6 +6,9 @@ const config = { kit: { // hydrate the
element in src/app.html adapter: staticAdapter(), + prerender: { + default: true + }, files: { assets: 'static' }, diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 4c7fdd0..688f368 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -1,7 +1,6 @@ const config = { mode: 'jit', darkMode: 'media', - purge: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: {} },