9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
experimental: {
|
||
|
},
|
||
|
output: 'standalone'
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|