2025-02-01 06:57:24 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
/* config options here */
|
2025-02-03 12:53:36 +07:00
|
|
|
// webpack: (config, options) => {
|
|
|
|
// config.module.rules.push({
|
|
|
|
// test: require.resolve("wowjs/dist/wow.js"),
|
|
|
|
// use: [
|
|
|
|
// {
|
|
|
|
// loader: "exports-loader",
|
|
|
|
// options: {
|
|
|
|
// exports: "this.WOW",
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// });
|
|
|
|
// return config;
|
|
|
|
// },
|
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "cochiseoncology.com",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2025-02-01 06:57:24 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
export default nextConfig;
|