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