-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.prod.js
96 lines (90 loc) · 2.33 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
86
87
88
89
90
91
92
93
94
95
96
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const path = require('path');
const { DefinePlugin } = require('webpack');
const {
KAKAO_MAP_API_URL,
ALBUM_BUCKET_NAME,
BUCKET_REGION,
IDENTITY_POOL_ID
} = process.env;
module.exports = {
mode: 'production',
devtool: 'cheap-module-source-map',
resolve: {
extensions: ['.js', '.jsx']
},
entry: './src/index',
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader, // generates css files
options: {
esModule: true
}
},
{
loader: 'css-loader', // translates CSS into CommonJS
options: {
modules: {
mode: 'local',
localIdentName: '[hash:base64:5]',
context: path.resolve(__dirname, 'src')
}
}
},
{
loader: 'sass-loader' // compiles Sass to CSS
}
],
exclude: /node_modules/
},
{
//cropper.js 사용을 위한 loader. node_modules를 제외하지 않음.
test: /\.css$/,
loader: 'style-loader!css-loader'
}
]
},
output: {
publicPath: '/',
path: path.resolve(__dirname, 'dist'),
filename: '[name].[chunkhash:16].js',
chunkFilename: '[name].[chunkhash:16].js' //dynamic import로 생성되는 chunk file의 이름을 설정.(optional)
},
optimization: {
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all'
}
}
}
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].[contenthash:16].css'
}),
new HtmlWebpackPlugin({
template: 'src/index.html'
}),
new CleanWebpackPlugin(),
new DefinePlugin({
ALBUM_BUCKET_NAME: JSON.stringify(ALBUM_BUCKET_NAME),
BUCKET_REGION: JSON.stringify(BUCKET_REGION),
IDENTITY_POOL_ID: JSON.stringify(IDENTITY_POOL_ID),
KAKAO_MAP_API_URL: JSON.stringify(KAKAO_MAP_API_URL)
})
]
};