6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
output: "export"
|
|
};
|
|
|
|
export default nextConfig;
|