mirror of
https://github.com/ChiChou/entdb.git
synced 2026-06-11 07:17:47 +02:00
a6f90462a5
- Add build timestamp to footer - Rename GitHub links for clarity (Source Code, Firmware Indexer, Raw Data) - Remove height limit from version history sidebar
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const basePath = process.env.NEXT_PUBLIC_BASE_PATH || "";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
basePath,
|
|
assetPrefix: basePath || undefined,
|
|
env: {
|
|
NEXT_PUBLIC_BUILD_TIME: new Date().toISOString(),
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|