| 12345678910111213141516171819202122232425 |
- import { configHeader } from '@/utils/constants';
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- reactStrictMode: true,
- typescript: {
- ignoreBuildErrors: false,
- },
- images: {
- unoptimized: true,
- remotePatterns: [],
- },
- async headers() {
- return configHeader;
- },
- compress: true,
- experimental: {
- optimizePackageImports: ["lodash", "date-fns"],
- serverActions: {
- bodySizeLimit: "2mb",
- },
- },
- };
- export default nextConfig;
|