-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only install extension in debug mode
- Loading branch information
Showing
4 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Warning: This file is only used in the development environment | ||
// and is removed at build time. | ||
// Do not edit the file unless necessary. | ||
import installExtension, { | ||
REACT_DEVELOPER_TOOLS, | ||
REDUX_DEVTOOLS, | ||
} from 'electron-extension-installer'; | ||
|
||
installExtension(REACT_DEVELOPER_TOOLS, { | ||
loadExtensionOptions: { | ||
allowFileAccess: true, | ||
}, | ||
}); | ||
installExtension(REDUX_DEVTOOLS, { | ||
loadExtensionOptions: { | ||
allowFileAccess: true, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters