beatrun.ru/svelte.config.js
2024-03-17 17:04:07 +05:00

15 lines
No EOL
337 B
JavaScript

import adapter from '@sveltejs/adapter-static';
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
})
}
};