Evo.Auth/apps/web/next.config.js
2022-11-27 12:55:26 +03:00

12 lines
233 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
reactStrictMode: true,
swcMinify: true,
eslint: {
ignoreDuringBuilds: true,
},
};
module.exports = nextConfig;