-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
81 lines (78 loc) · 2.2 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
81
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
module.exports = {
mode:'development',
entry: './src/app/app.tsx', // 프로젝트의 진입점 파일
output: {
path: path.resolve(__dirname+'/src', 'dist'), // 번들된 파일의 출력 경로
filename: 'bundle.js', // 번들된 파일의 이름
},
module: {
rules: [
// 웹팩 로더 설정
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.js$/, // .js 확장자를 가진 파일에 대해
exclude: [/node_modules/], // node_modules 디렉토리는 제외
use: {
loader:'babel-loader', // babel-loader를 사용하여 변환
options:{
presets:["@babel/preset-env", "@babel/preset-react"],
}
}
},
{
test: /\.tsx?$/,
exclude: [/node_modules/],
use: 'ts-loader',
},
// {
// test: /\.(png|jpe?g|gif)$/i,
// use: [
// {
// loader: 'file-loader',
// options: {
// name: './src/dist/img/[name].[hash].[ext]', // 이미지 파일이 복사될 경로 및 파일명 패턴
// publicPath:'./src/img'
// },
// },
// ],
// },
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'url-loader',
options: {
limit: 8192, // 작은 이미지 파일은 데이터 URL로 변환
name: '[name].[ext]',
outputPath: 'images/',
publicPath: 'images/',
},
},
],
},
],
},
plugins:[
new HtmlWebpackPlugin({
template:'./src/app/index.html',
filename:'index.html',
inject:'body'
})
],
resolve: {
extensions: ['.tsx', '.ts', '.js'], // 임포트 시 확장자 생략 가능
fallback: {
crypto: require.resolve('crypto-browserify'),
net: require.resolve('net-browserify'),
tls: require.resolve('tls-browserify'),
stream: require.resolve('stream-browserify'),
timers: require.resolve('timers-browserify'),
fs: false,
},
},
};