Files
aviation/next.config.js

11 lines
185 B
JavaScript
Executable File

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