Many Changes

This commit is contained in:
2024-05-14 12:49:50 +02:00
parent a01b6bdbc2
commit f6eef1ded3
53 changed files with 636 additions and 579 deletions
+9 -3
View File
@@ -1,9 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ['sequelize', 'sequelize-typescript'],
serverActions: true,
}
serverComponentsExternalPackages: ['sequelize', 'sequelize-typescript', 'bcrypt', '@sequelize/core'],
serverActions: {
},
},
webpack: (config) => {
config.externals = [...config.externals, 'bcrypt'];
return config;
},
}
module.exports = nextConfig