UNPKG

my-keyboard

Version:
19 lines (17 loc) 333 B
const path = require('path'); const webpack = require('webpack'); module.exports = { entry: { app: ['./src/main.js'] }, plugins: [ new webpack.HotModuleReplacementPlugin() ], devServer: { inline: true, hot: true, host: '0.0.0.0', historyApiFallback: true, port: process.env.PORT || 8101 } };