8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|