home/svelte.config.js

15 lines
337 B
JavaScript
Raw Normal View History

import adapter from '@sveltejs/adapter-static';
2023-01-31 14:40:13 +00:00
export default {
kit: {
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: null,
precompress: false,
strict: true
})
}
};