Files
hipmi/next.config.js
2025-02-14 13:45:59 +08:00

14 lines
249 B
JavaScript

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