This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
maatma-videos/svelte.config.js

16 lines
239 B
JavaScript
Raw Permalink Normal View History

2022-04-17 09:45:09 +00:00
import adapter from '@sveltejs/adapter-static';
2022-04-15 12:33:06 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
2022-04-17 09:45:09 +00:00
adapter: adapter({
fallback: 'index.html'
}),
paths: {
base: '/videos',
},
2022-04-15 12:33:06 +00:00
}
};
export default config;