Skip to content

Commit b7f87ae

Browse files
author
hextraza
committed
Add VariantTableWidget and associated components
1 parent 9abcc10 commit b7f87ae

File tree

18 files changed

+1219
-19
lines changed

18 files changed

+1219
-19
lines changed

jbrowse/config/dev.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ clientConfig.resolve.fallback =
2222
"fs": false
2323
}
2424

25+
clientConfig.resolve.alias["react/jsx-dev-runtime"] = "react/jsx-dev-runtime.js"
26+
clientConfig.resolve.alias["react/jsx-runtime"] = "react/jsx-runtime.js"
27+
clientConfig.resolve.alias["process/browser"] = "process/browser.js"
28+
2529
clientConfig.plugins = [new NodePolyfillPlugin()].concat(constants.processPlugins(entryPoints))
2630

2731
clientConfig.module.rules = clientConfig.module.rules.concat(

jbrowse/config/prod.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ clientConfig.resolve.fallback =
2222
"fs": false
2323
}
2424

25+
clientConfig.resolve.alias["react/jsx-dev-runtime"] = "react/jsx-dev-runtime.js"
26+
clientConfig.resolve.alias["react/jsx-runtime"] = "react/jsx-runtime.js"
27+
clientConfig.resolve.alias["process/browser"] = "process/browser.js"
28+
2529
clientConfig.plugins = [new NodePolyfillPlugin()].concat(constants.processPlugins(entryPoints))
2630

2731
clientConfig.module.rules = clientConfig.module.rules.concat(

jbrowse/config/watch.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ clientConfig.resolve.fallback =
2222
"fs": false
2323
}
2424

25+
clientConfig.resolve.alias["react/jsx-dev-runtime"] = "react/jsx-dev-runtime.js"
26+
clientConfig.resolve.alias["react/jsx-runtime"] = "react/jsx-runtime.js"
27+
clientConfig.resolve.alias["process/browser"] = "process/browser.js"
28+
2529
clientConfig.plugins = [new NodePolyfillPlugin()].concat(constants.processPlugins(entryPoints))
2630

2731
clientConfig.module.rules = clientConfig.module.rules.concat(

0 commit comments

Comments
 (0)