forked from ApryseSDK/webviewer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.prod.js
85 lines (84 loc) · 1.85 KB
/
webpack.config.prod.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: 'production',
entry: [
'babel-polyfill',
path.resolve(__dirname, 'src')
],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'webviewer-ui.min.js',
publicPath: '/'
},
plugins: [
new CopyWebpackPlugin([
{
from: './src/index.build.html',
to: '../build/index.html'
},
{
from: './i18n',
to: '../build/i18n'
},
{
from: './assets/pdftron.ico',
to: '../build/assets/pdftron.ico'
}
]),
new MiniCssExtractPlugin({
filename: 'style.css',
}),
// new BundleAnalyzerPlugin()
],
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'webviewer/apis'),
]
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: { minimize: true }
},
{
loader: 'postcss-loader',
options: {
plugins: () => [require('autoprefixer')()]
}
},
'sass-loader'
],
include: path.resolve(__dirname, 'src')
},
{
test: /\.svg$/,
use: [
'svg-inline-loader',
]
}
]
},
resolve: {
alias: {
src: path.resolve(__dirname, 'src/'),
components: path.resolve(__dirname, 'src/components/'),
constants: path.resolve(__dirname, 'src/constants/'),
helpers: path.resolve(__dirname, 'src/helpers/'),
actions: path.resolve(__dirname, 'src/redux/actions/'),
reducers: path.resolve(__dirname, 'src/redux/reducers/'),
selectors: path.resolve(__dirname, 'src/redux/selectors/'),
core: path.resolve(__dirname, 'src/core/'),
}
}
};