Firefox enterprise admin reference

December 1, 2025 ยท View on GitHub

This project hosts reference documentation for Firefox as an enterprise browser.

Getting started

Node.js and npm are required, for example:

node -v
# v23.11.1
npm -v
# 11.4.2

The quickest way to get started is to install dependencies and run in development mode:

npm i && npm run dev

For a full site build, including site search, run build then preview:

npm run build && npm run preview

Commands

All commands are run from the root of the project:

CommandAction
npm install (or npm i)Installs dependencies
npm run devStarts local dev server at localhost:4321
npm run buildBuild your production site to ./dist/
npm run previewPreview your build locally, before deploying
npm run astro ...Run CLI commands like astro add, astro check
npm run astro -- --helpGet help using the Astro CLI

Project structure

The project is built using Starlight. Starlight looks for .md or .mdx files in the src/content/docs/ directory. Each file is exposed as a route based on its file name. Images can be added to src/assets/ and embedded in Markdown with a relative link.

Static assets, like favicons, can be placed in the public/ directory.

Code examples

Reusable code snippets can be placed in src/examples/. To reuse a snippet like src/examples/policy.json, include it in markdown like so:

import { Code } from "@astrojs/starlight/components";
import policy from "/src/examples/policy.json?raw";

See my example:

<Code code={policy} lang="json" title="policies.json" />

Starlight documentation

See Starlight's docs, or read the Astro documentation.