Files
shorty/qr-web/next.config.ts
2026-02-07 11:03:53 -03:00

9 lines
158 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
output: 'standalone',
};
export default nextConfig;