//@ts-check // eslint-disable-next-line @typescript-eslint/no-var-requires const {withNx} = require('./with-nx.js'); /** * @type {import('@nrwl/next/plugins/with-nx').WithNxOptions} **/ const nextConfig = { reactStrictMode: true, poweredByHeader: false, output: 'standalone', nx: { // Set this to true if you would like to to use SVGR // See: https://github.com/gregberge/svgr svgr: false }, images: { loader: "default", domains: ["localhost", "127.0.0.1"], }, }; module.exports = withNx(nextConfig);