All checks were successful
Build and Push Frontend / build (push) Successful in 22s
- Build TypeScript/React to JavaScript bundle - Serve compiled main.js and main.css - Update HTML to load compiled assets - Add build step to Dockerfile Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
14 lines
355 B
HTML
14 lines
355 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AiWorker - AI Agent Orchestration Platform</title>
|
|
<link rel="stylesheet" href="/dist/main.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/dist/main.js"></script>
|
|
</body>
|
|
</html>
|