mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 10:09:31 +08:00
10 lines
225 B
Text
10 lines
225 B
Text
import { Adapter } from '@sveltejs/kit';
|
|
|
|
export interface AdapterOptions {
|
|
pages?: string;
|
|
assets?: string;
|
|
fallback?: string;
|
|
precompress?: boolean;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|