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