fix: Remove .nixpacks and .docker folders

- Delete auto-generated .nixpacks folder
- Delete .docker folder
- Easypanel should use root Dockerfile only
- This prevents confusion with multiple Dockerfile locations
This commit is contained in:
Kunthawat Greethong
2026-03-03 10:11:20 +07:00
parent f972f68875
commit 07158311e2
34 changed files with 6993 additions and 428 deletions

View File

@@ -162,11 +162,19 @@ declare module 'astro:content' {
};
type DataEntryMap = {
"products": Record<string, {
"blog": Record<string, {
id: string;
body?: string;
collection: "blog";
data: any;
rendered?: RenderedContent;
filePath?: string;
}>;
"products": Record<string, {
id: string;
body?: string;
collection: "products";
data: InferEntrySchema<"products">;
data: any;
rendered?: RenderedContent;
filePath?: string;
}>;
@@ -202,6 +210,6 @@ declare module 'astro:content' {
LiveContentConfig['collections'][C]['loader']
>;
export type ContentConfig = typeof import("../src/content.config.js");
export type ContentConfig = typeof import("../src/content.config.mjs");
export type LiveContentConfig = never;
}