forked from folio-org/stripes-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.cli.dev.js
74 lines (65 loc) · 1.92 KB
/
webpack.config.cli.dev.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
// Top level Webpack configuration for running a development environment
// from the command line via devServer.js
const webpack = require('webpack');
const postCssImport = require('postcss-import');
const autoprefixer = require('autoprefixer');
const postCssCustomProperties = require('postcss-custom-properties');
const postCssCalc = require('postcss-calc');
const postCssNesting = require('postcss-nesting');
const postCssCustomMedia = require('postcss-custom-media');
const postCssMediaMinMax = require('postcss-media-minmax');
const postCssColorFunction = require('postcss-color-function');
const base = require('./webpack.config.base');
const cli = require('./webpack.config.cli');
const devConfig = Object.assign({}, base, cli, {
devtool: 'inline-source-map',
mode: 'development',
});
// Override filename to remove the hash in development due to memory issues (STCOR-296)
devConfig.output.filename = 'bundle.js';
devConfig.entry.unshift('webpack-hot-middleware/client');
devConfig.plugins = devConfig.plugins.concat([
new webpack.HotModuleReplacementPlugin(),
]);
devConfig.module.rules.push({
test: /\.css$/,
use: [
{
loader: 'style-loader'
},
{
loader: 'css-loader',
options: {
localIdentName: '[local]---[hash:base64:5]',
modules: true,
sourceMap: true,
importLoaders: 1,
},
},
{
loader: 'postcss-loader',
options: {
plugins: () => [
postCssImport(),
autoprefixer(),
postCssCustomProperties({
preserve: false
}),
postCssCalc(),
postCssNesting(),
postCssCustomMedia(),
postCssMediaMinMax(),
postCssColorFunction(),
],
sourceMap: true,
},
},
],
});
devConfig.module.rules.push(
{
test: /\.svg$/,
use: [{ loader: 'file-loader?name=img/[path][name].[hash].[ext]' }]
},
);
module.exports = devConfig;