Skip to content

Commit

Permalink
🐛 fix: 修正 nextjs ssr 的兼容性问题
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Sep 6, 2023
1 parent cedebe9 commit 4bb09a0
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion client.js
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
export * from './lib/client';
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./lib/client"), exports);

0 comments on commit 4bb09a0

Please sign in to comment.