2024-06-25 19:43:47 +08:00
|
|
|
import * as React from 'react';
|
2018-04-18 21:01:36 +08:00
|
|
|
|
2022-08-08 22:33:49 +08:00
|
|
|
export async function initDevFeatures() {
|
2020-04-10 01:44:05 +08:00
|
|
|
// if why-render is in url enable why did you render react extension
|
|
|
|
|
if (window.location.search.indexOf('why-render') !== -1) {
|
2022-08-08 22:33:49 +08:00
|
|
|
const { default: whyDidYouRender } = await import('@welldone-software/why-did-you-render');
|
2020-04-10 01:44:05 +08:00
|
|
|
whyDidYouRender(React, {
|
|
|
|
|
trackAllPureComponents: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|