We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75ee13 commit f4e5fb2Copy full SHA for f4e5fb2
webpack.config.js
@@ -11,16 +11,12 @@ const config = {
11
entry: path.resolve(__dirname, 'index.js'),
12
// Output
13
output: {
14
- path: path.resolve(__dirname, `dist/`),
15
filename: 'terminusdb-client.min.js',
16
sourceMapFilename: 'terminusdb-client.min.js.map',
17
libraryTarget: 'umd',
18
library: 'TerminusDBClient',
19
globalObject: 'this',
20
},
21
- node: {
22
- process: false,
23
- },
24
// Loaders
25
module: {
26
rules: [
@@ -33,7 +29,12 @@ const config = {
33
29
],
34
30
35
31
devtool: 'source-map',
36
- // Plugins
32
+ // Plugins
+ resolve: {
+ fallback: {
+ "https": false,
+ }
37
38
}
39
40
module.exports = function(env, argv) {
0 commit comments