12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export',
|
|
trailingSlash: true,
|
|
basePath: '',
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
|
|
export default nextConfig;
|