-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
62 lines (61 loc) · 1.8 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
const path = require('path');
const Dotenv = require('dotenv-webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: './src/index.tsx',
output: { path: path.join(__dirname, 'build'), filename: 'index.bundle.js' },
mode: process.env.NODE_ENV || 'development',
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {
'@@types': path.resolve(__dirname, './src/@types'),
'@apis': path.resolve(__dirname, './src/apis'),
'@assets': path.resolve(__dirname, './src/assets'),
'@common': path.resolve(__dirname, './src/common'),
'@components': path.resolve(__dirname, './src/components'),
'@converter': path.resolve(__dirname, './src/converter'),
'@hooks': path.resolve(__dirname, './src/hooks'),
'@languages': path.resolve(__dirname, './src/languages'),
'@libs': path.resolve(__dirname, './src/libs'),
'@pages': path.resolve(__dirname, './src/pages'),
'@recoil': path.resolve(__dirname, './src/recoil'),
'@style': path.resolve(__dirname, './src/style'),
'@utils': path.resolve(__dirname, './src/utils'),
},
},
devServer: {
static: {
directory: path.join(__dirname, 'public'),
},
compress: true,
port: 3000,
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: ['ts-loader'],
},
{
test: /\.(jpg|jpeg|png|gif|mp3|svg)$/,
use: ['file-loader'],
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
],
},
plugins: [
new Dotenv(),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'public', 'index.html'),
}),
],
};