This repository has been archived by the owner on Jan 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
99 lines (95 loc) · 2.37 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
90
91
92
93
94
95
96
97
98
99
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const nodeEnv = process.env.NODE_ENV || 'development';
const outputDirectory = 'dist';
const hotMiddlewareScript = 'webpack-hot-middleware/client?path=/__webpack_hmr&timeout=20000';
const common = {
mode: nodeEnv,
devtool: 'inline-source-map',
resolve: {
alias: {
'@client': path.resolve(__dirname, 'client'),
'@server': path.resolve(__dirname, 'server'),
'@common': path.resolve(__dirname, 'common'),
'@atom': path.resolve(__dirname, 'client/components/atoms'),
'@molecule': path.resolve(__dirname, 'client/components/molecules'),
'@organism': path.resolve(__dirname, 'client/components/organisms'),
'@template': path.resolve(__dirname, 'client/components/templates'),
}
}
};
const frontend = {
entry: {
bundle: [ './client/index.js', hotMiddlewareScript ]
},
output: {
path: path.resolve(__dirname, outputDirectory + '/public'),
filename: '[name].js',
publicPath: 'http://localhost:8181/',
},
plugins: [
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify(nodeEnv)},
}),
new webpack.HotModuleReplacementPlugin(),
],
module: {
rules: [
{
test: /\.js?$/,
exclude: [/node_modules/],
use: ['babel-loader'],
},
{
test: /\.css$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]'
}
}
]
}
]
}
};
const backend = {
entry: {
server: './server/server.js',
},
target: 'node',
externals: [
nodeExternals({whitelist: hotMiddlewareScript}),
],
output: {
path: path.resolve(__dirname, outputDirectory),
filename: '[name].js',
publicPath: '/',
},
node: {
__dirname: true,
},
plugins: [
new CleanWebpackPlugin(outputDirectory),
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify(nodeEnv)},
}),
new webpack.HotModuleReplacementPlugin(),
],
module: {
rules: [
{
test: /\.js?$/,
exclude: [/node_modules/],
use: ['babel-loader'],
}
]
}
};
module.exports = [
Object.assign({}, common, frontend),
Object.assign({}, common, backend),
];