assessment-model/next.config.js
2023-07-25 12:01:14 +01:00

16 lines
333 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
},
],
},
};
// use next-axiom for full stack monitoring
const { withAxiom } = require("next-axiom");
module.exports = withAxiom(nextConfig);