Files
TX/artifacts/teaboy-os/.replit-artifact/artifact.toml
T

32 lines
577 B
TOML
Raw Normal View History

kind = "web"
previewPath = "/"
title = "TeaBoy OS"
version = "1.0.0"
id = "artifacts/teaboy-os"
router = "path"
[[integratedSkills]]
name = "react-vite"
version = "1.0.0"
[[services]]
name = "web"
paths = [ "/" ]
localPort = 25785
[services.development]
run = "pnpm --filter @workspace/teaboy-os run dev"
[services.production]
build = [ "pnpm", "--filter", "@workspace/teaboy-os", "run", "build" ]
publicDir = "artifacts/teaboy-os/dist/public"
serve = "static"
[[services.production.rewrites]]
from = "/*"
to = "/index.html"
[services.env]
PORT = "25785"
BASE_PATH = "/"