You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
495 B
JavaScript
26 lines
495 B
JavaScript
// /** @type {import('@sveltejs/kit').Config} */
|
|
|
|
// const config = {
|
|
// kit: {
|
|
// // hydrate the <div id="svelte"> element in src/app.html
|
|
// target: '#svelte',
|
|
// }
|
|
// };
|
|
|
|
// export default config;
|
|
|
|
import adapter from '@sveltejs/adapter-static';
|
|
import netlify from '@sveltejs/adapter-netlify'
|
|
|
|
export default {
|
|
kit: {
|
|
adapter: adapter({
|
|
// default options are shown
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: null
|
|
}),
|
|
// adapter: netlify(),
|
|
target: '#svelte'
|
|
}
|
|
}; |