diff --git a/attached_assets/image_1765983317385.png b/attached_assets/image_1765983317385.png new file mode 100644 index 0000000..53adce6 Binary files /dev/null and b/attached_assets/image_1765983317385.png differ diff --git a/server/index.ts b/server/index.ts index f4219e2..447507e 100644 --- a/server/index.ts +++ b/server/index.ts @@ -2,8 +2,12 @@ import express, { type Request, Response, NextFunction } from "express"; import { registerRoutes } from "./routes"; import { serveStatic } from "./static"; import { createServer } from "http"; +import path from "path"; const app = express(); + +// Serve DE screenshots statically +app.use('/de_screenshots', express.static(path.join(process.cwd(), 'attached_assets/de_screenshots'))); const httpServer = createServer(app); declare module "http" {