[READ-ONLY] Mirror of https://github.com/mrgnw/morganwill.com. morganwill.com
0

Configure Feed

Select the types of activity you want to include in your feed.

morganwill.com / svelte.config.js
466 B 29 lines
1import preprocess from "svelte-preprocess"; 2import adapter from "@sveltejs/adapter-static"; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 kit: { 7 adapter: adapter( 8 { 9 pages: 'build', 10 assets: 'build', 11 fallback: 'index.html', 12 precompress: false, 13 strict: true, 14 routes: { 15 include: ['/*'], 16 exclude: ['<all>'] 17 } 18 } 19 ), 20 }, 21 22 preprocess: [ 23 preprocess({ 24 postcss: true, 25 }), 26 ], 27}; 28 29export default config;