mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-17 01:17:37 +00:00
17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
|
import adapter from '@sveltejs/adapter-static';
|
||
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
||
|
|
||
|
/** @type {import('@sveltejs/kit').Config} */
|
||
|
const config = {
|
||
|
preprocess: vitePreprocess(),
|
||
|
kit: {
|
||
|
// paths: {
|
||
|
// base: '/'
|
||
|
// },
|
||
|
// trailingSlash: 'always',
|
||
|
adapter: adapter()
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default config;
|