1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-05 06:45:01 +01:00
Files
docs/next.config.ts
2025-05-26 15:53:44 +02:00

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;