nextjs-cms 0.5.18 → 0.5.19

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.
@@ -84,7 +84,7 @@ export async function getCsrfToken() {
84
84
  }
85
85
  let broadcastChannel = null;
86
86
  function getNewBroadcastChannel() {
87
- return new BroadcastChannel('lzcms-auth');
87
+ return new BroadcastChannel('nextjs-cms-auth');
88
88
  }
89
89
  function broadcast() {
90
90
  if (typeof BroadcastChannel === 'undefined') {
@@ -147,7 +147,7 @@ function mergeConfig(defaults, userConfig) {
147
147
  // Default configuration values
148
148
  const defaultConfig = {
149
149
  sectionsFolder: 'sections',
150
- siteName: 'LZ CMS Admin',
150
+ siteName: 'nextjs-cms',
151
151
  api: {
152
152
  baseUrl: '/api',
153
153
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextjs-cms",
3
- "version": "0.5.18",
3
+ "version": "0.5.19",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",