subman-nextjs/next.config.mjs

11 lines
222 B
JavaScript
Raw Normal View History

2024-06-11 08:16:34 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.externals = [...config.externals, "bcrypt"];
return config;
},
2024-10-01 12:56:25 +00:00
output: "standalone",
};
2024-06-11 08:16:34 +00:00
export default nextConfig;