Files
hipmi/next.config.js
Bagasbanuna02 2b08326bed Fix event
Deskripsi:
- Fix user server menjadi API di beranda
2024-12-06 13:51:39 +08:00

11 lines
192 B
JavaScript

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