mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-07 07:09:13 +08:00
9 lines
180 B
Text
9 lines
180 B
Text
import { Adapter } from '@sveltejs/kit';
|
|
|
|
type Options = {
|
|
edge?: boolean;
|
|
external?: string[];
|
|
split?: boolean;
|
|
};
|
|
|
|
export default function plugin(options?: Options): Adapter;
|