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