9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
trailingSlash: true,
|
|
};
|
|
|
|
export default nextConfig;
|