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 12:02:11 +01:00
const nextConfig = {
2023-07-10 05:08:39 +01:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
port: "",
pathname: "/**",
},
],
},
2023-07-02 12:02:11 +01:00
};
2023-07-01 20:43:53 +00:00
module.exports = withYaml(nextConfig);