FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surerank
/
src
/
apps
/
admin-components
Edit File: tanstack-router-dev-tools.js
import { lazy } from '@wordpress/element'; const TanStackRouterDevtools = process.env.NODE_ENV === 'production' ? () => null // Render nothing in production : lazy( () => // Lazy load in development import( '@tanstack/router-devtools' ).then( ( res ) => ( { default: res.TanStackRouterDevtools, } ) ) ); export default TanStackRouterDevtools;
Save
Back