-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
80 lines (74 loc) · 1.96 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
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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const { DefinePlugin } = require('webpack');
const path = require('path');
const { KAKAO_MAP_API_URL } = require('./map_constants');
const {
ALBUM_BUCKET_NAME,
BUCKET_REGION,
IDENTITY_POOL_ID
} = require('./aws_s3');
module.exports = {
mode: 'development',
devtool: 'eval-source-map',
resolve: {
extensions: ['.js', '.jsx']
},
devServer: {
historyApiFallback: true,
port: 8080
},
entry: './src/index',
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader', // translates CSS into CommonJS
options: {
modules: {
mode: 'local',
localIdentName: '[name]-[local]--[hash:hex:4]',
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].bundle.js',
chunkFilename: '[name].bundle.js' //dynamic import로 생성되는 chunk file의 이름을 설정.(optional)
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: 'src/index.html'
}),
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)
})
]
};