full site update
This commit is contained in:
20
node_modules/astro/dist/core/create-vite.d.ts
generated
vendored
20
node_modules/astro/dist/core/create-vite.d.ts
generated
vendored
@@ -1,15 +1,23 @@
|
||||
import nodeFs from 'node:fs';
|
||||
import * as vite from 'vite';
|
||||
import type { AstroSettings } from '../@types/astro.js';
|
||||
import type { AstroSettings, RoutesList } from '../types/astro.js';
|
||||
import type { SSRManifest } from './app/types.js';
|
||||
import type { Logger } from './logger/core.js';
|
||||
interface CreateViteOptions {
|
||||
type CreateViteOptions = {
|
||||
settings: AstroSettings;
|
||||
logger: Logger;
|
||||
mode: 'dev' | 'build' | string;
|
||||
command?: 'dev' | 'build';
|
||||
mode: string;
|
||||
fs?: typeof nodeFs;
|
||||
sync: boolean;
|
||||
}
|
||||
routesList: RoutesList;
|
||||
manifest: SSRManifest;
|
||||
} & ({
|
||||
command: 'dev';
|
||||
manifest: SSRManifest;
|
||||
} | {
|
||||
command: 'build';
|
||||
manifest?: SSRManifest;
|
||||
});
|
||||
/** Return a base vite config as a common starting point for all Vite commands. */
|
||||
export declare function createVite(commandConfig: vite.InlineConfig, { settings, logger, mode, command, fs, sync }: CreateViteOptions): Promise<vite.InlineConfig>;
|
||||
export declare function createVite(commandConfig: vite.InlineConfig, { settings, logger, mode, command, fs, sync, routesList, manifest }: CreateViteOptions): Promise<vite.InlineConfig>;
|
||||
export {};
|
||||
|
Reference in New Issue
Block a user