dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
6 lines (5 loc) • 392 B
TypeScript
import type { InlineConfig } from 'vite';
import type { UiFilePaths } from '../../utils/config/cli-options';
import type { TypeScriptErrorHolder } from './plugins/dt-error-overlay/dt-error-overlay-plugin';
/** Creates the Vite inline configuration for the dev server */
export declare function createViteDevConfig(uiFilePaths: UiFilePaths, errorHolder?: TypeScriptErrorHolder): InlineConfig;