mirror of
https://codeberg.org/MarkusThielker/finances.git
synced 2025-04-09 03:58:41 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
webpack: (config) => {
|
|
config.externals.push(
|
|
'@node-rs/argon2',
|
|
'@node-rs/bcrypt',
|
|
);
|
|
return config;
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|