7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
import {NextConfig} from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
};
|
|
|
|
export default nextConfig;
|