This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
server/qa/ui/svelte.config.js

15 lines
282 B
JavaScript

import adapt from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapt({
fallback: 'index.html'
}),
paths: {
relative: true
},
}
};
export default config;