2388873e7a
- Fix duplicate 'signature' variable in webhooks.ts - Add Prisma binary target for Alpine Linux - Fix tsconfig path alias (@/* -> ./src/*) - Add missing next-themes dependency - Add build args for NEXT_PUBLIC_* env vars - Fix SSR issues with zustand and providers - Add providers-wrapper with dynamic ssr:false import - Add SSL certs and public dir for nginx - Update Dockerfiles for proper Prisma engine handling
25 lines
556 B
JavaScript
25 lines
556 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const path = require('path');
|
|
|
|
const nextConfig = {
|
|
webpack: (config) => {
|
|
config.resolve.alias['@'] = path.join(__dirname, 'src');
|
|
config.parallelism = 1;
|
|
return config;
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: `${process.env.NEXT_PUBLIC_API_URL}/api/:path*`,
|
|
},
|
|
{
|
|
source: '/webhooks/:path*',
|
|
destination: `${process.env.NEXT_PUBLIC_API_URL}/webhooks/:path*`,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|