2024-06-11 08:16:34 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-09-13 17:24:39 +00:00
|
|
|
const nextConfig = {
|
2024-10-02 14:17:24 +00:00
|
|
|
output: "standalone",
|
2024-10-04 08:36:00 +00:00
|
|
|
// basePath: "/subman",
|
2024-09-13 17:24:39 +00:00
|
|
|
webpack: (config) => {
|
|
|
|
config.externals = [...config.externals, "bcrypt"];
|
|
|
|
return config;
|
|
|
|
},
|
|
|
|
};
|
2024-06-11 08:16:34 +00:00
|
|
|
|
|
|
|
export default nextConfig;
|