Files
managementwebsite01/artifacts/dental-app/.replit-artifact/artifact.toml
Replit Agent dd2a20075c Initialize dental-app artifact structure and dependencies
Replit-Commit-Author: Agent
2026-07-26 02:54:36 +00:00

28 lines
541 B
TOML

kind = "web"
previewPath = "/"
title = "My Dental Management Software"
version = "1.0.0"
id = "artifacts/dental-app"
router = "path"
[[services]]
name = "web"
paths = [ "/" ]
localPort = 24305
[services.development]
run = "pnpm --filter @workspace/dental-app run dev"
[services.production]
build = [ "pnpm", "--filter", "@workspace/dental-app", "run", "build" ]
serve = "static"
publicDir = "artifacts/dental-app/dist/public"
[[services.production.rewrites]]
from = "/*"
to = "/index.html"
[services.env]
PORT = "24305"
BASE_PATH = "/"