-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
76 lines (75 loc) · 1.95 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
mode: 'development',
entry: {
index: './source/index.ts',
main: './source/main.ts',
play: './source/play.ts',
router: './source/router.ts',
},
// for importing something in ts or js file
resolve: {
extensions: ['.ts', '.js', '.css', 'png'],
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name]_bundle.js',
},
module: {
rules: [
{
// Fot loading TS file
test: /\.ts$/,
use: 'ts-loader',
include: [path.resolve(__dirname, 'source')],
},
{
// For loading CSS
test: /\.css$/,
use: [
// 가져온 css를 웹 페이지 안에 style로 주입해주는 로더
'style-loader',
// css 파일 읽어와서 웹펙에 가져오는 로더 (로더는 뒤쪽에 있는게 먼저 실행 - 체이닝)
'css-loader',
],
},
{
// For loading image file
test: /\.png$/,
use: [{
loader: 'file-loader',
options: {
// 원본 파일 이미지로 dist 에 생성
name: '[name].[ext]?[hash]',
},
}],
},
{
// For loading image file
test: /\.html$/,
use: [{
loader: 'html-loader',
}],
},
],
},
plugins: [
// 최종 완성된 HTML을 생성하기 위한 플러그인 (플러그인이 자동으로 외부 파일들을 넣어줌)
new HtmlWebpackPlugin({
// 소스
template: './source/index.html',
// 출력할 파일 이름
filename: './index.html',
// HTML에 삽입할 script key
chunks: ['index'],
}),
// 자동으로 dist 파일 청소후 다시 만들어 줌
new CleanWebpackPlugin(),
],
devServer: {
port: 9000,
open: true,
},
};