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