8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
// next.config.mjs
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|