We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use client
1 parent 94e503e commit d237197Copy full SHA for d237197
.changeset/tame-apples-sin.md
@@ -0,0 +1,6 @@
1
+---
2
+'@react-oauth/google': patch
3
+'rollup-config-generator': patch
4
5
+
6
+add `use client` directive to support nextjs out of the box
packages/rollup-config-generator/index.js
@@ -17,10 +17,12 @@ module.exports = packageJson =>
17
{
18
file: packageJson.main,
19
format: 'cjs',
20
+ banner: "'use client'",
21
},
22
23
file: packageJson.module,
24
format: 'esm',
25
26
27
],
28
external: Object.keys(packageJson.dependencies || {}).concat(
0 commit comments