원클릭으로
build
Build the project with TypeScript and Vite. Use when the user asks to build, compile, or run the build step.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build the project with TypeScript and Vite. Use when the user asks to build, compile, or run the build step.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Install the packed .webapp.zip onto the paired Board device and launch it. Use when the user asks to deploy, install, or push to the device.
Pack the built dist/ into a .webapp.zip for device installation. Use when the user asks to pack, package, or bundle the app for deployment.
Capture a screenshot of the current screen on the paired Board device. Use when the user asks to screenshot, grab a screen capture, or see what's on the device. It may also aid in debugging when needed.
SOC 직업 분류 기준
| name | build |
| description | Build the project with TypeScript and Vite. Use when the user asks to build, compile, or run the build step. |
Build a static app with relative paths. In Vite, set base: "./":
// vite.config.ts
export default {
base: "./",
};
To compile TypeScript and bundle with Vite:
npm run build
This runs tsc && vite build, outputting to dist/. Fix any type errors before proceeding to pack or deploy.