-
Notifications
You must be signed in to change notification settings - Fork 112
/
webpack.config.js
116 lines (112 loc) · 3.56 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
const { parse, resolve } = require('path');
const url = require('url');
const { sync: glob } = require('fast-glob');
const WebpackAssetsManifest = require('webpack-assets-manifest');
const RailsI18nWebpackPlugin = require('@18f/identity-rails-i18n-webpack-plugin');
const RailsAssetsWebpackPlugin = require('@18f/identity-assets/webpack-plugin');
const UnpolyfillWebpackPlugin = require('@18f/identity-unpolyfill-webpack-plugin');
const env = process.env.NODE_ENV || process.env.RAILS_ENV || 'development';
const host = process.env.HOST || 'localhost';
const isLocalhost = host === 'localhost';
const isProductionEnv = env === 'production';
const isTestEnv = env === 'test';
const mode = isProductionEnv ? 'production' : 'development';
const hashSuffix = isProductionEnv ? '-[chunkhash:8].digested' : '';
const devServerPort = process.env.WEBPACK_PORT;
const devtool = process.env.WEBPACK_DEVTOOL || (isProductionEnv ? 'source-map' : 'eval-source-map');
const entries = glob('app/{components,javascript/packs}/*.{ts,tsx}');
module.exports = /** @type {import('webpack').Configuration} */ ({
mode,
devtool,
target: ['web'],
devServer: {
static: {
directory: './public',
watch: false,
},
port: devServerPort,
headers: {
'Access-Control-Allow-Origin': '*',
'Cache-Control': 'no-store',
Vary: '*',
},
client: {
overlay: {
runtimeErrors: false,
},
},
hot: false,
},
entry: entries.reduce((result, path) => {
result[parse(path).name] = resolve(path);
return result;
}, {}),
output: {
filename: `[name]${hashSuffix}.js`,
chunkFilename: `[name].chunk${hashSuffix}.js`,
sourceMapFilename: `[name]${hashSuffix}.js.map`,
path: resolve(__dirname, 'public/packs'),
publicPath:
devServerPort && isLocalhost ? `http://localhost:${devServerPort}/packs/` : '/packs/',
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.mjs', '.cjs', '.mts', '.cts'],
conditionNames: ['source', '...'],
},
module: {
rules: [
!isProductionEnv && {
test: /\.js$/,
include: /node_modules/,
enforce: 'pre',
use: ['source-map-loader'],
},
{
test: /\.[cm]?[jt]sx?$/,
exclude: /node_modules\/(?!@18f\/identity-)/,
use: {
loader: 'babel-loader',
},
},
].filter(Boolean),
},
optimization: {
chunkIds: 'natural',
},
plugins: [
new WebpackAssetsManifest({
entrypoints: true,
publicPath(filename, plugin) {
// Only prepend public path for JavaScript files, since all other assets will be processed
// using Rails asset pipeline, and should use the original filename.
return filename.endsWith('.js')
? url.resolve(plugin.compiler.options.output.publicPath, filename)
: filename;
},
writeToDisk: true,
integrity: isProductionEnv,
integrityHashes: ['sha256'],
output: 'manifest.json',
transform(manifest) {
const srcIntegrity = {};
for (const [key, { src, integrity }] of Object.entries(manifest)) {
if (integrity) {
srcIntegrity[src] = integrity;
delete manifest[key];
}
}
manifest.integrity = srcIntegrity;
return manifest;
},
}),
new RailsI18nWebpackPlugin({
onMissingString(key, locale) {
if (isTestEnv) {
throw new Error(`Unexpected missing string for locale '${locale}': '${key}'`);
}
},
}),
new RailsAssetsWebpackPlugin(),
new UnpolyfillWebpackPlugin(),
],
});