-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
38 lines (37 loc) · 1009 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
const path = require('path');
const {
createConfig, customConfig, addPlugins, defineConstants, env, entryPoint, setOutput, sourceMaps } = require('@webpack-blocks/webpack2');
const babel = require('@webpack-blocks/babel6');
const devServer = require('@webpack-blocks/dev-server2');
const happypack = require('webpack-blocks-happypack');
const html = require('webpack-blocks-html');
const { productionPlugins } = require('./webpack.plugins');
module.exports = createConfig([
setOutput('./dist/bundle.js'),
happypack([
babel(),
]),
html({
title: 'styled-components-sandbox',
}),
defineConstants({
'process.env.NODE_ENV': process.env.NODE_ENV,
}),
customConfig({
resolve: {
modules: [
path.join(__dirname, 'src'),
'node_modules',
],
},
}),
env('development', [
entryPoint('./src/index.dev.js'),
devServer(),
sourceMaps(),
]),
env('production', [
entryPoint('./src/index.js'),
addPlugins(productionPlugins),
]),
]);