Fred Boniface
bc6fd6cdc9
Still awaiting the check auth endpoint, the code only acts on a 401 response. That means that it currently will not detect if an account is expired.
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
precompress: true,
|
|
strict: true
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|