subman-nextjs/next.config.mjs

12 lines
245 B
JavaScript
Raw Normal View History

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