mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-16 21:41:02 +00:00
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
// This prevents Webpack from bundling svg-captcha and breaking its font paths
|
|
serverExternalPackages: ['svg-captcha'],
|
|
};
|
|
|
|
export default nextConfig;
|