-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathwebpack.config.js
54 lines (50 loc) · 1.28 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
// This script is copied to "build" directory and run from there
const webpack = require("webpack");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const path = require("path");
const dist = path.resolve(__dirname, "dist");
module.exports = {
mode: "production",
entry: {
main: "main"
},
output: {
filename: "[name].bundle.js",
path: dist,
publicPath: ""
},
devServer: {
contentBase: dist
},
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
}
]
},
resolve: {
modules: [
path.resolve(__dirname, "kotlin-js-min/main"),
path.resolve(__dirname, "kotlin-js-min/legacy/main"),
path.resolve(__dirname, "../src/main/web/")
]
},
devtool: 'source-map',
plugins: [
new HtmlWebpackPlugin({
title: 'Kotlin Coroutines JS Example'
}),
new UglifyJSPlugin({
sourceMap: true
})
]
};