hamburger/next.config.js

10 lines
157 B
JavaScript
Raw Permalink Normal View History

2023-03-15 19:39:14 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
2023-09-08 20:36:31 +02:00
output: 'standalone'
2023-03-15 19:39:14 +01:00
}
module.exports = nextConfig