-
Notifications
You must be signed in to change notification settings - Fork 53
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Hi,
Thanks for the great library. I've been using it for all my projects, but it does not work on IE11.
Can you add support for this one?
I got a Syntax error in index.js
if (process.env.NODE_ENV === 'production') {
module.exports = {
DevTool: () => null,
}
Can this be changed to
if (process.env.NODE_ENV === 'production') {
module.exports = {
DevTool: function DevTool() {
return null;
}
};
} else {
module.exports = require('./dist/react-hook-form-devtools.js');
}
bluebill1049
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request