aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.cjs
blob: cf7a8424afa5aea80ffc0eecc5bfef12c31b8725 (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
	kit: {
		// By default, `npm run build` will create a standard Node app.
		// You can create optimized builds for different platforms by
		// specifying a different adapter
		adapter: '@sveltejs/adapter-node',

		// hydrate the <div id="forum"> element in src/app.html
		target: '#forum'
	}
};