generated from Fascinated/nextjs-13-template-with-tailwindcss
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
const withYaml = require("next-plugin-yaml");
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = withYaml(nextConfig);
|