9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['sequelize', 'sequelize-typescript'],
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|