rowboat/apps/rowboat/next.config.mjs

10 lines
174 B
JavaScript
Raw Normal View History

2025-01-13 15:31:31 +05:30
/** @type {import('next').NextConfig} */
2025-01-13 17:08:47 +05:30
const nextConfig = {
output: 'standalone',
serverExternalPackages: [
'awilix',
],
2025-01-13 17:08:47 +05:30
};
2025-01-13 15:31:31 +05:30
export default nextConfig;