Files
aviation/weather-ui/next.config.js

11 lines
182 B
JavaScript
Executable File

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