Skip to content

Commit 0f6cf81

Browse files
author
Sebastian Benjamin
authored
Add VariantTable component and related files (#146)
* Add VariantTable component and related files
1 parent c1f5ec4 commit 0f6cf81

File tree

28 files changed

+1769
-218
lines changed

28 files changed

+1769
-218
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)