data-peek/apps/webapp/next.config.ts

12 lines
240 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
compress: true,
poweredByHeader: false,
reactStrictMode: true,
experimental: {
optimizePackageImports: ['lucide-react'],
},
}
export default nextConfig