summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/NodeJSServer/webpack.config.js')
-rw-r--r--WebInterface/NodeJSServer/webpack.config.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/WebInterface/NodeJSServer/webpack.config.js b/WebInterface/NodeJSServer/webpack.config.js
deleted file mode 100644
index 4b408a2..0000000
--- a/WebInterface/NodeJSServer/webpack.config.js
+++ /dev/null
@@ -1,39 +0,0 @@
-const path = require('path');
-const nodeExternals = require('webpack-node-externals');
-
-module.exports = [
- {
- mode: 'production',
- entry: {
- index: './src/js/index.js',
- },
- output: {
- filename: '[name].js',
- chunkFilename: '[name].js',
- path: path.resolve(__dirname, './dist/script/'),
- publicPath: './script/',
- },
- }, {
- mode: 'production',
- entry: {
- about: './src/js/about.js',
- },
- output: {
- filename: '[name].js',
- chunkFilename: '[name].js',
- path: path.resolve(__dirname, './dist/script/'),
- publicPath: '../script/',
- },
- }, {
- mode: 'production',
- entry: {
- play: './src/js/play.js',
- },
- output: {
- filename: '[name].js',
- chunkFilename: '[name].js',
- path: path.resolve(__dirname, './dist/script/'),
- publicPath: '../script/',
- },
- },
-];