mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 07:09:30 +08:00
12 lines
193 B
Text
12 lines
193 B
Text
import adapter from '../../../index.js';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter({
|
|
fallback: '200.html'
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|