8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
distDir: 'dist',
|
|
}
|
|
|
|
module.exports = nextConfig
|