Files
aviation/ui/next.config.js
2023-09-22 16:56:57 -04:00

11 lines
184 B
JavaScript
Executable File

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