Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions client/src/pages/ConfigurePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default function ConfigurePage() {
<section className="space-y-6 rounded-2xl border border-white/20 bg-white/10 backdrop-blur-md shadow-glass p-6 text-white">
{/* Template */}
<label className="grid gap-1">
<span className="text-sm font-medium">Template</span>
<span className="text-sm font-medium text-slate-800">Template</span>
<select
disabled={busy}
value={template}
Expand Down Expand Up @@ -261,7 +261,7 @@ export default function ConfigurePage() {

{/* Stages */}
<fieldset className="space-y-2">
<legend className="text-sm font-medium">Enabled stages</legend>
<legend className="text-sm font-medium text-slate-800">Enabled stages</legend>
<div className="flex flex-wrap gap-3">
{(["build", "test", "deploy"] as const).map((stage) => (
<label
Expand All @@ -284,7 +284,7 @@ export default function ConfigurePage() {
{/* Node version + commands */}
<div className="grid gap-4">
<label className="grid gap-1">
<span className="text-sm font-medium">Node version</span>
<span className="text-sm font-medium text-slate-800">Node version</span>
<input
disabled={busy}
value={options.nodeVersion}
Expand All @@ -295,7 +295,7 @@ export default function ConfigurePage() {
</label>

<label className="grid gap-1">
<span className="text-sm font-medium">Install command</span>
<span className="text-sm font-medium text-slate-800">Install command</span>
<input
disabled={busy}
value={options.installCmd}
Expand All @@ -306,7 +306,7 @@ export default function ConfigurePage() {
</label>

<label className="grid gap-1">
<span className="text-sm font-medium">Test command</span>
<span className="text-sm font-medium text-slate-800">Test command</span>
<input
disabled={busy}
value={options.testCmd}
Expand All @@ -317,7 +317,7 @@ export default function ConfigurePage() {
</label>

<label className="grid gap-1">
<span className="text-sm font-medium">Build command</span>
<span className="text-sm font-medium text-slate-800">Build command</span>
<input
disabled={busy}
value={options.buildCmd}
Expand Down
14 changes: 9 additions & 5 deletions client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@ export default defineConfig({
target: "http://localhost:3000",
changeOrigin: true,
},
// // optional, if you have other endpoints like /api
// "/api": {
// target: "http://localhost:3000",
// changeOrigin: true,
// },
// optional, if you have other endpoints like /api
"/api": {
target: "http://localhost:3000",
changeOrigin: true,
},
"/agent": {
target: "http://localhost:3000",
changeOrigin: true,
},
},
},
});
Loading
Loading