UNPKG

fast-deployment

Version:

A lightweight Node.js package for rapid deployment of Vue.js, Next.js, and Nuxt.js applications

14 lines (13 loc) 423 B
export interface DeploymentConfig { serverHost: string; serverUser: string; serverDir: string; folderName: string; appType: 'vue' | 'next' | 'nuxt'; htaccessTemplate?: string; healthCheckUrl?: string; healthCheckStatus?: number; pm2AppName?: string; } export declare function loadConfig(): DeploymentConfig; export declare function getHtaccessContent(htaccessTemplate?: string): string;