-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.js
89 lines (87 loc) · 2.23 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
84
85
86
87
88
89
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
entry: './src/index.tsx',
output: {
path: path.resolve(__dirname, 'build'),
publicPath: '/',
filename: 'bundle.js',
},
mode: 'development',
devServer: {
// Required for Docker to work with dev server
// host: '0.0.0.0',
host:'localhost',
port: 8080,
// match the output path
contentBase: path.resolve(__dirname, 'build'),
//enable HMR on the devServer
hot: true,
//match the output 'publicPath'
publicPath: '/',
// fallback to root for other urls
historyApiFallback: true,
inline: true,
headers: { 'Access-Control-Allow-Origin': '*' },
// proxy is required in order to make api calls to express server while using hot-reload webpack server
// routes api fetch requests from localhost:8080/api/* (webpack dev server) to localhost:3000/api/* (where our Express server is running)
proxy: {
'/testing-ab': {
target: 'http://localhost:3000/',
secure: false,
},
'/data': {
target: 'http://localhost:3000/',
secure: false,
},
},
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use:
{
loader: "ts-loader",
}
},
{
enforce: "pre",
test: /\.js$/,
use:
{
loader: "source-map-loader"
}
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: { sourceMap: true, importLoaders: 1 } },
{ loader: 'sass-loader', options: { sourceMap: true } },
],
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: "./index.html"
}),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: '[name].css',
chunkFilename: '[id].css',
})
],
devtool: "source-map",
resolve: {
extensions: [".js", ".ts", ".tsx"]
}
}