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.
1 parent b375bf3 commit a1b0de7Copy full SHA for a1b0de7
packages/connect-react/.eslintignore
@@ -0,0 +1 @@
1
+dist
packages/connect-react/examples/nextjs/next.config.ts
@@ -1,7 +1,5 @@
import type { NextConfig } from "next";
2
3
-const nextConfig: NextConfig = {
4
- /* config options here */
5
-};
+const nextConfig: NextConfig = { /* config options here */ };
6
7
export default nextConfig;
packages/connect-react/src/polyfills.ts
@@ -3,6 +3,6 @@
// 5:const element = document.createElement('i')
if (typeof document === "undefined") {
globalThis.document = {
- createElement: () => {},
- } as any;
+ createElement: () => { /* noop */ },
+ } as any; // eslint-disable-line @typescript-eslint/no-explicit-any
8
}
0 commit comments