-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
126 lines (121 loc) · 2.95 KB
/
webpack.dev.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const webpack = require('webpack');
const path = require('path');
const configs = require('dotenv').config();
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: [
'react-hot-loader/patch',
path.resolve(__dirname, 'src') + '/main.jsx'
],
output: {
publicPath: '/',
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
resolve: {
extensions: ['.scss', '.js', '.jsx', '.css'],
alias: {
Components: path.join(__dirname, 'src', 'components'),
Containers: path.join(__dirname, 'src', 'containers'),
Services: path.join(__dirname, 'src', 'services'),
Constants: path.join(__dirname, 'src', 'constants'),
Actions: path.join(__dirname, 'src', 'store', 'actions'),
Reducers: path.join(__dirname, 'src', 'store', 'reducers'),
Styles: path.join(__dirname, 'src', 'styles'),
Src: path.join(__dirname, 'src'),
Root: path.join(__dirname)
}
},
module: {
loaders: [
{
test: /\.jsx?/,
include: path.resolve(__dirname, 'src'),
loader: 'babel-loader'
},
{
test: /\.(ttf|eot|woff|woff2|jpg|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]'
}
},
{
test: /\.less/,
use: [
{
loader: 'style-loader'
},
{
loader: 'css-loader',
options: {
minimize: true
}
},
{
loader: 'less-loader',
options: {
modifyVars: {
'@primary-color': '#21c55e'
}
}
}
]
},
{
test: /\.s?css$/,
use: [
{
loader: 'style-loader',
options: {sourceMap: true}
},
{
loader: 'css-loader',
options: {
localIdentName: '[name]__[local]___[hash:base64:10]',
modules: true,
sourceMap: true
}
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
plugins: function () {
return [
require('autoprefixer')
];
}
}
},
{
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
}
]
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new HtmlWebpackPlugin({
title: 'Spotify',
template: './src/index.html',
inject: 'body'
}),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
CONFIGS: JSON.stringify(configs.parsed)
})
],
devtool: 'eval-source-map',
devServer: {
host: '0.0.0.0',
hotOnly: true,
historyApiFallback: true,
port: configs.parsed.DEV_SERVER_PORT
}
};