| 34 | const __dirname = dirname(__filename); |
| 35 | |
| 36 | interface ServerOptions { |
| 37 | awelPort: number; |
| 38 | targetPort: number; |
| 39 | projectCwd: string; |
| 40 | fresh?: boolean; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Serves a static file with proper MIME type, or returns null if not found |
nothing calls this directly
no outgoing calls
no test coverage detected