Skip to content

Commit

Permalink
Expanded devtoolPlugin condition to cover Linux platform
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoro committed Aug 11, 2023
1 parent 79cabb6 commit e237650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.plugin.config.mjs
Expand Up @@ -32,7 +32,7 @@ export default options => {
sourceMapOptions.append = '\n//# sourceMappingURL=../../../app.asar.unpacked/assets/webpack/[url]'
}

if (process.platform === 'win32' && process.env.TABBY_DEV) {
if ((process.platform === 'win32' || process.platform === 'linux') && process.env.TABBY_DEV) {
devtoolPlugin = wp.EvalSourceMapDevToolPlugin
}

Expand Down

0 comments on commit e237650

Please sign in to comment.