Evo.Auth/apps/web/next.config.js
2022-11-27 21:17:30 +03:00

18 lines
370 B
JavaScript

const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
outputFileTracingRoot: path.join(__dirname, '../../'),
},
};
module.exports = nextConfig;