mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {};
|
|
|
|
// use next-axiom for full stack monitoring
|
|
const { withAxiom } = require("next-axiom");
|
|
|
|
module.exports = withAxiom(nextConfig);
|