owlboard-svelte/svelte.config.js
Fred Boniface bc6fd6cdc9 Closes issue: OwlBoard/backend#39
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.
2023-08-24 20:24:28 +01:00

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;