7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
devIndicators: false,
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|