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