Desc: - Perubahan pengambilan data dari API ke Function use server No issue
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
serverActions: true
|
|
},
|
|
|
|
}
|
|
|
|
module.exports = nextConfig
|