summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/webpack.config.js
blob: c587000cd84de53a28fea784e3e38751fd76344f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const path = require('path');
const nodeExternals = require('webpack-node-externals');

module.exports = {
  mode: 'production',
  entry: {
    index: './src/index.js'
  },
  output: {
    filename: '[name].js',
    path: path.resolve(__dirname, './dist')
  }
};