-
Notifications
You must be signed in to change notification settings - Fork 50
/
webpack.common.js
63 lines (62 loc) · 1.85 KB
/
webpack.common.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
55
56
57
58
59
60
61
62
63
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const TerserPlugin = require("terser-webpack-plugin");
const output_path = path.resolve(__dirname, "dist");
module.exports = {
entry: "./src/js/index.js",
optimization: {
usedExports: true,
minimizer: [
new TerserPlugin()
]
},
output: {
filename: "storymap.js",
path: path.join(output_path, 'js'),
library: "KLStoryMap" // https://webpack.js.org/configuration/output/#outputlibrary
},
plugins: [
new CopyPlugin({
patterns: [
{ from: './src/embed/*.html',
to: path.join(output_path, "embed/[name].[ext]")},
{ from: './src/js/language/locale/*.json',
to: path.join(output_path, 'js/locale/[name].[ext]') }
]
}),
new CleanWebpackPlugin({
cleanStaleWebpackAssets: true
}),
],
module: {
rules: [
{
test: /\.less$/,
use: [{
loader: 'css-loader',
options: {
sourceMap: true,
}
},
{
loader: 'less-loader',
options: {
sourceMap: true,
}
},
],
},
{
test: /\.(woff(2)?|ttf|eot|svg|png)(\?v=\d+\.\d+\.\d+)?$/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: '../css/icons'
}
}]
}
]
}
};