Skip to content

Commit fe88952

Browse files
authored
Fix production env
1 parent 79531ad commit fe88952

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ import { InspectProps } from 'inspx';
7474
const Inspect = React.lazy(() => import('inspx'));
7575

7676
export default function Loader(props: InspectProps) {
77-
if (process.env.NODE_ENV === 'development') {
77+
if (process.env.NODE_ENV === 'production') {
7878
return children;
7979
}
8080
return (

0 commit comments

Comments
 (0)