-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
83 lines (82 loc) · 2.88 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
82
83
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const Dotenv = require('dotenv-webpack');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
module.exports = {
entry: './src/index.tsx', // 엔트리 포인트 설정
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js', // 번들된 파일의 이름
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'], // import 시 확장자를 생략할 수 있게 해줍니다.
},
module: {
rules: [
{
test: /\.(js|jsx|ts|tsx)$/,
use: [
// Babel Loader 설정
{
loader: 'babel-loader',
options: {
presets: [
'@babel/preset-env',
'@babel/preset-react', // React 지원
],
plugins: [
// 개발 환경에서만 React Refresh 플러그인 적용
process.env.NODE_ENV !== 'production' && require.resolve('react-refresh/babel'),
].filter(Boolean),
},
},
],
exclude: /node_modules/,
},
// CSS 로더 추가
{
test: /\.css$/,
use: [process.env.NODE_ENV !== 'production' ? 'style-loader' : MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.(png|jpg|jpeg|gif)$/i, // 이미지 파일 대상
type: 'asset/resource',
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i, // 폰트 파일 대상
type: 'asset/resource',
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: './public/index.html', // 템플릿 파일 경로
filename: 'index.html', // 생성될 HTML 파일 이름
inject: 'body', // 스크립트를 body 태그 끝에 삽입
}),
new ForkTsCheckerWebpackPlugin({
async: false,
}),
...(process.env.NODE_ENV === 'production'
? [new MiniCssExtractPlugin({ filename: '[name].[contenthash].css' })]
: []),
new Dotenv({
path: `./.env.${process.env.NODE_ENV}`, // 환경별 .env 파일 경로
}),
process.env.NODE_ENV !== 'production' && new ReactRefreshWebpackPlugin(),
].filter(Boolean),
devServer: {
static: {
directory: path.join(__dirname, 'public'), // 정적 파일을 제공할 디렉토리
},
port: 3000, // 서버 포트 번호
open: true, // 서버 시작 시 브라우저 자동 열기
hot: true, // 핫 모듈 교체 활성화
historyApiFallback: true, // 히스토리 API를 사용하는 SPA에 유용
liveReload: true, // 라이브리로딩
},
mode: 'development', // 개발 모드 설정
devtool: process.env.NODE_ENV === 'production' ? 'hidden-source-map' : 'eval-cheap-module-source-map',
};