1
0

next.config.ts 408 B

12345678910111213141516171819202122
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. reactStrictMode: true,
  4. typescript: {
  5. ignoreBuildErrors: false,
  6. },
  7. images: {
  8. remotePatterns: [
  9. {
  10. protocol: "https",
  11. hostname: "picsum.photos",
  12. port: "",
  13. pathname: "/**",
  14. },
  15. ],
  16. },
  17. output: "standalone",
  18. transpilePackages: ["motion"],
  19. };
  20. export default nextConfig;