-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
75 lines (67 loc) · 1.81 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
const glob = require('glob');
const path = require('path');
const util = require('util');
const WebpackAssetsManifest = require('webpack-assets-manifest');
const entryDir = 'packs';
const sourceRoot = path.resolve(__dirname, './app/javascript');
const entryRoot = path.resolve(sourceRoot, entryDir);
const targetRoot = path.resolve(__dirname, `./public/${entryDir}`);
const extensions = ['js', 'jsx', 'ts', 'tsx'];
const mode = process.env.NODE_ENV || 'development';
const devServerPort = 9000;
const isDevServer = process.argv.find(v => v.includes('webpack-dev-server'));
const publicPath =
isDevServer ? `http://localhost:${devServerPort}/${entryDir}/` : `/${entryDir}/`;
const config = {
context: entryRoot,
devServer: {
contentBase: path.join(__dirname, 'public'),
hot: false,
inline: false,
port: devServerPort,
publicPath
},
entry: async () => {
const globPromise = util.promisify(glob);
const paths = await globPromise(`${entryRoot}/**/*.{${extensions.join(',')}}`);
const entry = {};
paths.forEach((p) => {
const relativePath = path.relative(entryRoot, p);
const parts = path.parse(relativePath);
const chunkName = path.join(parts.dir, parts.name);
entry[chunkName] = p;
});
return entry;
},
mode,
module: {
rules: [
{
include: [sourceRoot],
test: /\.(t|j)sx?$/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
},
},
},
]
},
node: false,
output: {
filename: '[name]-[hash].js',
path: targetRoot,
publicPath
},
plugins: [
new WebpackAssetsManifest(),
],
resolve: {
extensions: extensions.map(e => `.${e}`)
}
};
if (mode === 'development') {
config.devtool = 'cheap-source-map';
}
module.exports = config;