Skip to content

quant page

Deploy a single HTML page to QuantCDN at a specific URL. Use this for hotfixes or one-off page uploads; for full-site deploys use quant deploy.

Terminal window
quant page <file> <location> [options]

quant page uploads one HTML file and makes it available at location. By default the CLI normalises URLs by stripping index.html — so deploying about.html to /about serves at /about/. Pass --enable-index-html to keep index.html in URLs.

For non-HTML assets (CSS, JS, images), use quant file instead.

Name Description
file Path to the local HTML file (required).
location The URL path the page should be available at (required).
Flag Description Default
--enable-index-html Keep index.html in URLs. false
Terminal window
quant page index.html /about
Terminal window
quant page about.html /about --enable-index-html