Files
aviation/next.config.js
2023-08-30 17:43:49 -04:00

11 lines
182 B
JavaScript
Executable File

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