static-test / svelte.config.js
pngwn
tweak
5fd8183
raw
history blame
323 Bytes
import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte',
paths: {
base: '/staticspaceiframe/spaces/pngwn/static-test'
}
}
};
export default config;