hamburger/next.config.js
2023-09-08 20:36:31 +02:00

10 lines
157 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
output: 'standalone'
}
module.exports = nextConfig