@cronitorio/cronitor-rum-nextjs 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +7 -1
  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} />;
@@ -65,6 +67,10 @@ export default CustomApp;
65
67
 
66
68
  ## Changelog
67
69
 
70
+ ### 0.2.1
71
+
72
+ - Update cronitor-rum-js lib.
73
+
68
74
  ### 0.2.0
69
75
 
70
76
  - 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.2.0",
3
+ "version": "0.2.1",
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.1.0"
36
+ "@cronitorio/cronitor-rum-js": "^0.2.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/react": "^18.0.27",