-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
75 lines (73 loc) ยท 2.52 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
module.exports = {
mode: 'development',
entry: `${path.resolve(__dirname, './src')}/index.tsx`,
devtool: 'eval-cheap-module-source-map',
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'], //module import์ ํ์ฅ์ ์๋ถ์ฌ๋ ๊ฐ๋ฅํ๋๋ก ํด์ฃผ๋ ์ต์
alias: {
'@': path.resolve(__dirname, 'src/'),
},
},
//loader - ์์ ์๋ฐ์คํฌ๋ฆฝํธ ํ์ผ์ด ์๋ ์์๋ค(ex.html, css, images, jsx, tsx)์ ๋ณํ ํ ์ ์๋๋ก ๋์์ฃผ๋ ์์ฑ๋ค
module: {
rules: [
{
test: /\.(ts|tsx|js|jsx)$/,
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react'],
},
exclude: /node_modules/,
},
{
test: /\.(png|jpg|gif|svg|ico)$/,
loader: 'file-loader',
options: {
publicPath: './dist/',
name: '[name].[ext]',
},
},
],
},
plugins: [
// public/index.html์ ๊ธฐ๋ณธ ํ
ํ๋ฆฟ ์ผ์ ๋น๋์ ๋น๋๋ ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋๊ฐ ์ฝ์
๋ html ์์ฑ
new HtmlWebpackPlugin({
template: `${path.resolve(__dirname, './public')}/index.html`,
inject: 'body',
favicon: './public/favicon.ico',
}),
//๊ฐ ๋ชจ๋๋ง๋ค import React from 'react'์ฃผ์
//์ปดํฌ๋ํธ ๋ชจ๋ ๋ง๋ค ์์ ์ด ์ค๋ ๋จ
new webpack.ProvidePlugin({
React: 'react',
}),
new webpack.DefinePlugin({
'process.env': JSON.stringify(process.env),
}),
],
/*
publicPath: devServer์คํ์ router์ ๊ฐ์ ์ญํ ์ ํจ
์ฆ publicPath๋ก ์ค์ ๋ ๊ฒฝ๋ก ex) http://localhost.com:3000/${publicPath}
๋ก ์ ๊ทผ ํด์ผ ๋น๋ก์ ํ๋ฉด์ด ๋ณด์ฌ์ง๋ค
*/
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
publicPath: '/',
clean: true,
},
stats: {
children: true,
},
devServer: {
open: true, // devServer ์คํ์ ์๋์ผ๋ก ๋ธ๋ผ์ฐ์ ์คํํ์ฌ ํ๋ฉด ์ถ๋ ฅ
hot: true, // ๊ธฐ๋ณธ์ ์ผ๋ก ์ ์ฒด ๋ฆฌ๋ก๋ ๋์ง๋ง react์ ๊ฐ์ spa์ ๊ฒฝ์ฐ ์ ์ฒด ๋ฆฌ๋ก๋ ๋ ๊ฒฝ์ฐ ๋ฐ์ดํฐ๊ฐ ์ฌ๋ผ์ง๋ ๋ฌธ์ ๋ฐ์ ๋ฐ๋ผ์ ๋ชจ๋๋ณ๋ก ๋ฆฌ๋ก๋
compress: true, // ์์ถ
port: 3000,
historyApiFallback: true, //๋ผ์ฐํฐ ์ด๋์ (Link) ์๋ก๊ณ ์นจ์ ํ๊ฒ๋๋ฉด ๋ธ๋ผ์ฐ์ ์์ ์ ํ์๋ url์ฃผ์๋ ์ค์ ์๋ฒ ์ฃผ์๊ฐ ์๋์๋ ๋ถ๊ตฌํ๊ณ ๋ฆฌ๋ก๋ ๋๊ฒ ํ ์ ์๋ ๊ธฐ๋ฅ
liveReload: true,
},
};