mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-09-05 14:05:37 +05:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'export',
|
|
trailingSlash: true
|
|
};
|
|
|
|
export default nextConfig;
|