13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
trailingSlash: true,
|
|
distDir: "out",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|