Files
home/Projects/kompose/news/apps/docs/next.config.ts

9 lines
177 B
TypeScript
Raw Normal View History

2025-10-10 16:43:21 +02:00
import type { NextConfig } from "next";
import nextra from "nextra";
2025-10-08 10:35:48 +02:00
2025-10-10 16:43:21 +02:00
const withNextra = nextra({});
2025-10-08 10:35:48 +02:00
2025-10-10 16:43:21 +02:00
const nextConfig: NextConfig = {};
2025-10-08 10:35:48 +02:00
2025-10-10 16:43:21 +02:00
export default withNextra(nextConfig);