Ai_Suite / next.config.mjs
ADITYA025's picture
Upload 211 files
6127734 verified
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { isServer }) => {
if (!isServer) {
// Ensure only one instance of Yjs is loaded
config.resolve.alias = {
...config.resolve.alias,
'yjs': config.resolve.alias.yjs || 'yjs'
};
}
return config;
}
};
export default nextConfig;