forked from Danger-Noodle-C17/frecco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
40 lines (39 loc) · 947 Bytes
/
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
const path = require('path');
module.exports = {
mode: process.env.NODE_ENV,
entry: {
index: ['./client/index.js'],
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build'),
},
module: {
rules: [
{
test: /\.jsx?/,
loader: 'babel-loader',
exclude: path.resolve(__dirname, 'node_modules'),
query: {
presets: ['@babel/preset-env', '@babel/preset-react'],
},
},
{
test: /\.scss$/i,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'sass-loader' }
]
}
]
},
devServer: {
historyApiFallback: true,
publicPath: '/build/',
contentBase: path.join(__dirname, './client'), // path from which static file should be served. if not specified, static files will not be served.
proxy: {
'/users':'http://localhost:3000',
}
},
}