12345678910111213141516171819202122232425262728293031323334 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- /* config options here */
- reactStrictMode: true,
- images: {
- unoptimized: true,
- domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com"],
- remotePatterns: [
- {
- protocol: "https",
- hostname: "**.vercel.app",
- },
- ],
- },
- experimental: {
- turbo: {
- rules: {
- "*.svg": {
- loaders: ["@svgr/webpack"],
- as: "*.js",
- },
- },
- },
- },
- // webpack: (config, { dev }) => {
- // if (dev) {
- // config.devtool = "cheap-module-source-map";
- // }
- // return config;
- // },
- };
- export default nextConfig;
|