mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
22 lines
509 B
JavaScript
22 lines
509 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "lh3.googleusercontent.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "images.unsplash.com",
|
|
},
|
|
],
|
|
},
|
|
allowedDevOrigins: ['local-origin.dev', '*.local-origin.dev'],
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
// use next-axiom for full stack monitoring
|
|
const { withAxiom } = require("next-axiom");
|
|
|
|
module.exports = withAxiom(nextConfig);
|