2022-09-02 11:41:38 -04:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2022-09-01 00:02:09 -04:00
|
|
|
|
2022-08-31 18:03:29 -04:00
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
kit: {
|
2022-09-02 11:41:38 -04:00
|
|
|
adapter: adapter({
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: null,
|
|
|
|
precompress: false
|
|
|
|
}),
|
2022-08-31 18:03:29 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|