Files
hipmi/next.config.js
2025-04-08 17:05:00 +08:00

14 lines
252 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
experimental: {
serverActions: true,
},
// output: "standalone",
// eslint: {
// ignoreDuringBuilds: true,
// },
};
module.exports = nextConfig;