Hosting VS Code Extension
Deploy static websites, landing pages, and prototypes instantly from chat or the command palette. Free, no account needed.
VS Code agent mode
You: deploy the dist folder ⚒ deployments_upload ./dist Agent: Your site is live: https://happy-cat-abc1234.shipstatic.com Claim it to keep it permanently: https://my.shipstatic.com/claim/…
VS Code Extension
Ship from your editor.
Ask your AI assistant in agent mode, or use the command palette. The folder you are working in goes live in seconds, with no account.
- All fifteen ShipStatic tools in agent mode
- Publish without an account
- Deploys the folder you are working in
- Palette commands for deploy, account and tokens
$
ext install shipstatic.shipstatic
Configuration as Code
One file. Full control.
Drop a ship.json in your project root to configure rewrites, redirects, and custom headers. No dashboard clicks, no deploy flags, just code.
SPA Rewrites
Route all paths to index.html for client-side routing.
Redirects
Permanent or temporary redirects with status codes.
Custom Headers
Set CORS, CSP, cache-control, and any other HTTP header.
ship.json
{
"rewrites": [
{
"source": "/**",
"destination": "/index.html"
}
]
}