Spaces:
Sleeping
Sleeping
// pnpm configuration for the AI Newsletter frontend | |
module.exports = { | |
hooks: { | |
readPackage(pkg) { | |
// Ensure React types compatibility | |
if (pkg.name === '@types/react') { | |
pkg.peerDependencies = { | |
...pkg.peerDependencies, | |
'react': '*' | |
} | |
} | |
return pkg | |
} | |
} | |
} | |