30 lines
599 B
TypeScript
30 lines
599 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
// 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",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|