fix: enable by default only in development

This commit is contained in:
Daniel Roe 2024-11-14 15:33:27 +01:00
parent 07db7219bd
commit 203abc0693
No known key found for this signature in database
GPG Key ID: CBC814C393D93268

View File

@ -413,6 +413,8 @@ export default defineUntypedSchema({
*
* @see [the Chrome DevTools extensibility API](https://developer.chrome.com/docs/devtools/performance/extension#tracks)
*/
browserDevtoolsTiming: true,
browserDevtoolsTiming: {
$resolve: async (val, get) => val ?? await get('dev'),
},
},
})