Avoid console errors in browsers that lack a console.
Excerpted from HTML5 boilerplate:
| # PowerShell script to add Windows Defender exclusions for WSL2 and JetBrains IDE performance issues | |
| # | |
| # For context please read this thread: | |
| # https://github.com/microsoft/WSL/issues/8995 | |
| # | |
| # How to use? | |
| # - Save the Script: Open a text editor like Notepad and paste the PowerShell script into it. | |
| # - Save the file with a .ps1 extension, for example, Add_WindowsDefender_Exclusions.ps1. | |
| # - Run PowerShell as Administrator: Search for "PowerShell" in the Start menu, right-click on it, and choose "Run as administrator". | |
| # - Navigate to the Script's Location: Use the cd command to navigate to the directory where you saved the .ps1 file. |
| const timing = store => next => action => { | |
| performance.mark(`${action.type}_start`); | |
| let result = next(action); | |
| performance.mark(`${action.type}_end`); | |
| performance.measure( | |
| `${action.type}`, | |
| `${action.type}_start`, | |
| `${action.type}_end` | |
| ); | |
| return result; |
| export XDEBUG_CONFIG="idekey=PHPSTORM" |
Avoid console errors in browsers that lack a console.
Excerpted from HTML5 boilerplate: