@cronitorio/cronitor-rum-nextjs 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -53,7 +53,9 @@ import { useCronitor } from '@cronitorio/cronitor-rum-nextjs';
|
|
|
53
53
|
function CustomApp({ Component, pageProps }) {
|
|
54
54
|
|
|
55
55
|
useCronitor('YOUR_SITE_ID', {
|
|
56
|
-
debug: true
|
|
56
|
+
debug: true,
|
|
57
|
+
environment: "staging",
|
|
58
|
+
includeURLQueryParams: ["tab", "pageNum"]
|
|
57
59
|
});
|
|
58
60
|
|
|
59
61
|
return <Component {...pageProps} />;
|
|
@@ -62,9 +64,16 @@ function CustomApp({ Component, pageProps }) {
|
|
|
62
64
|
export default CustomApp;
|
|
63
65
|
```
|
|
64
66
|
|
|
65
|
-
|
|
66
67
|
## Changelog
|
|
67
68
|
|
|
69
|
+
### 0.3.0
|
|
70
|
+
|
|
71
|
+
- Update cronitor-rum-js lib.
|
|
72
|
+
|
|
73
|
+
### 0.2.1
|
|
74
|
+
|
|
75
|
+
- Update cronitor-rum-js lib.
|
|
76
|
+
|
|
68
77
|
### 0.2.0
|
|
69
78
|
|
|
70
79
|
- Support new Next.js 13 'app' directory and client-only components.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cronitorio/cronitor-rum-nextjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Official Cronitor integration for Next.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"react": "^18"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@cronitorio/cronitor-rum-js": "^0.
|
|
36
|
+
"@cronitorio/cronitor-rum-js": "^0.3.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/react": "^18.0.27",
|