Update dependencies and switch to @sveltejs/adapter-node for SvelteKit project
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import { Adapter } from '@sveltejs/kit';
|
||||
import './ambient.js';
|
||||
|
||||
declare global {
|
||||
const ENV_PREFIX: string;
|
||||
const PRECOMPRESS: boolean;
|
||||
}
|
||||
|
||||
interface AdapterOptions {
|
||||
out?: string;
|
||||
precompress?: boolean;
|
||||
envPrefix?: string;
|
||||
}
|
||||
|
||||
export default function plugin(options?: AdapterOptions): Adapter;
|
||||
Reference in New Issue
Block a user