aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/player/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/standalone/player/webpack.config.js')
-rw-r--r--client/src/standalone/player/webpack.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/standalone/player/webpack.config.js b/client/src/standalone/player/webpack.config.js
new file mode 100644
index 000000000..48d350edf
--- /dev/null
+++ b/client/src/standalone/player/webpack.config.js
@@ -0,0 +1,12 @@
1const path = require('path')
2
3module.exports = [
4 {
5 mode: 'production',
6 entry: './dist/player.js',
7 output: {
8 filename: 'player.min.js',
9 path: path.resolve(__dirname, 'build')
10 }
11 }
12]