mirror of
https://github.com/SkalaraAI/skalara-web.git
synced 2025-04-05 04:50:19 -04:00
9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|