To deploy your vitro website you can use a website hosting platform like Vercel
To produce your static assets you can run
1vitro build --out ./dist
In case you want to deploy to a sub path like https://example.com/path
you will need to pass the basePath option in config
1// vitro.config.js2module.exports = {3basePath: '/path',4}
basePath
will not be used in development!