10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ["typeorm", "knex"],
|
|
},
|
|
reactStrictMode: true
|
|
};
|
|
|
|
export default nextConfig;
|