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