[json] fetch http and https schemas on the ext host

This commit is contained in:
Martin Aeschlimann
2019-03-05 16:26:43 +01:00
parent c6315a3d30
commit 849d9417ea
5 changed files with 97 additions and 9 deletions

View File

@@ -9,6 +9,7 @@
const withDefaults = require('../shared.webpack.config');
const path = require('path');
var webpack = require('webpack');
module.exports = withDefaults({
context: path.join(__dirname, 'client'),
@@ -18,5 +19,9 @@ module.exports = withDefaults({
output: {
filename: 'jsonMain.js',
path: path.join(__dirname, 'client', 'dist')
}
},
plugins: [
new webpack.IgnorePlugin(/vertx/) // request-light dependendeny
]
});