feat: enhance import functionality with Caddyfile content preview and optional mounting in Docker

This commit is contained in:
Wikid82
2025-11-22 14:29:21 -05:00
parent 19230e1400
commit fea86a6c76
16 changed files with 373 additions and 20 deletions
+1
View File
@@ -14,6 +14,7 @@ export interface ImportPreview {
conflicts: string[];
errors: string[];
};
caddyfile_content?: string;
}
export const uploadCaddyfile = async (content: string): Promise<ImportPreview> => {