mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-27 14:44:17 +00:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|