aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/webpack.config.js
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-15 07:48:25 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-15 07:48:25 +0800
commit8e81b0680f407519a789c4f3de6245a8bafd3e72 (patch)
tree933517e1b0f87bd8054fb9f422c935bb83f55a5f /packages/instant/webpack.config.js
parent8afcba7ba16382fd656518e8de3b55267e0f7722 (diff)
downloaddexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar.gz
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar.bz2
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar.lz
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar.xz
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.tar.zst
dexon-sol-tools-8e81b0680f407519a789c4f3de6245a8bafd3e72.zip
feat: expose webpack-dev-server content to local network
Diffstat (limited to 'packages/instant/webpack.config.js')
-rw-r--r--packages/instant/webpack.config.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/instant/webpack.config.js b/packages/instant/webpack.config.js
index 78a33ce90..c566237e6 100644
--- a/packages/instant/webpack.config.js
+++ b/packages/instant/webpack.config.js
@@ -1,7 +1,8 @@
const path = require('path');
+const ip = require('ip');
// The common js bundle (not this one) is built using tsc.
// The umd bundle (this one) has a different entrypoint.
-module.exports = {
+const config = {
entry: './src/index.umd.ts',
output: {
filename: '[name].bundle.js',
@@ -24,5 +25,15 @@ module.exports = {
devServer: {
contentBase: path.join(__dirname, 'public'),
port: 5000,
+ host: '0.0.0.0',
+ after: () => {
+ if (config.devServer.host === '0.0.0.0') {
+ console.log(
+ `webpack-dev-server can be accessed externally at: ${ip.address()}:${config.devServer.port}`,
+ );
+ }
+ },
},
};
+
+module.exports = config;