7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
};
|