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