| 12345678910111213141516171819202122 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- reactStrictMode: true,
- typescript: {
- ignoreBuildErrors: false,
- },
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "picsum.photos",
- port: "",
- pathname: "/**",
- },
- ],
- },
- output: "standalone",
- transpilePackages: ["motion"],
- };
- export default nextConfig;
|