portfolio2023/next.config.js
2024-04-15 11:38:40 +02:00

10 lines
229 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ['sequelize', 'sequelize-typescript'],
serverActions: true,
}
}
module.exports = nextConfig