simple-links/next.config.js

18 lines
309 B
JavaScript
Raw Normal View History

const withYaml = require("next-plugin-yaml");
2023-07-01 20:43:53 +00:00
/** @type {import('next').NextConfig} */
2023-07-02 11:02:11 +00:00
const nextConfig = {
2023-07-10 04:08:39 +00:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
port: "",
pathname: "/**",
},
],
},
2023-07-02 11:02:11 +00:00
};
2023-07-01 20:43:53 +00:00
module.exports = withYaml(nextConfig);