Aurora Drift compiles to aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/aurora-drift/llms.txt
Use this file to discover all available pages before exploring further.
dist/ folder of fully static files — plain HTML, CSS, and JavaScript with no server-side runtime required. That output can be dropped onto any static hosting service that can serve files over HTTPS. The sections below cover the three most popular targets: GitHub Pages, Vercel, and Netlify.
- GitHub Pages
- Vercel
- Netlify
The Aurora Drift repository includes a Subdirectory deployments: If your site will be hosted at Rebuild after making this change. Without it, all asset paths will resolve from
.nojekyll file at the root. This file tells GitHub Pages to bypass its default Jekyll processing pipeline and serve all files as-is — including files and directories whose names start with an underscore (such as _assets/). Without .nojekyll, those directories would be silently ignored and the page would fail to load. Make sure this file is present in whatever branch you push to.Build the project
If you have the original Vite source, run:This produces the
dist/ folder. Confirm it contains index.html, an assets/ directory, and a pages/ directory. If you are deploying the compiled repository directly, skip this step — the repository root is already the deployable output.Push to the gh-pages branch
The simplest approach is to use the This command creates (or resets) a
gh-pages npm package:gh-pages branch containing only the contents of dist/ and pushes it to GitHub automatically. If you are deploying the compiled repository directly, push the repository root contents instead.https://username.github.io/repo-name/ rather than at a custom domain root, you need to add a base option to vite.config.js in the original source project before building:/ and the page will render as a blank white screen. This setting is not available in the compiled repository, which has no vite.config.js.Further reading
GitHub Pages documentation
Official guide to configuring GitHub Pages, custom domains, HTTPS enforcement, and the
gh-pages branch workflow.Vercel documentation
Vercel’s full docs covering project configuration, environment variables, preview deployments, and custom domain setup.