mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-08 08:06:09 +00:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
import adapter from '@sveltejs/adapter-auto'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
prerender: { origin: 'https://configure-pages.github.io' },
|
|
paths: { base: '/docs' },
|
|
adapter: adapter()
|
|
}
|
|
}
|
|
|
|
export default config
|