mirror of
https://github.com/prometheus/docs.git
synced 2026-02-05 15:45:27 +01:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
// Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html`
|
|
trailingSlash: true,
|
|
// Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href`
|
|
// skipTrailingSlashRedirect: true,
|
|
// Optional: Change the output directory `out` -> `dist`
|
|
// distDir: 'dist',
|
|
};
|
|
|
|
export default nextConfig;
|