-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.babel.js
48 lines (45 loc) · 1.41 KB
/
webpack.config.babel.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
const fPath = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MergeAndFlushI18nPlugin = require('./merge-and-flush-i18n');
const BrotliPlugin = require('brotli-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const makeWebPackModule = require('./webpack.modules.js');
const translationPlugin = require('./translation-plugin.js');
const state = new translationPlugin.newState();
const visitorFactory = translationPlugin.makeVisitorFactory(
state,
{
rootPrefixLength: `${fPath.dirname(__filename)}${fPath.sep}src${fPath.sep}`.length
});
module.exports = {
entry: "./src/bootstrap.tsx",
output: {
filename: "./bundle.js"
},
mode: 'development',
// Enable sourcemaps for debugging webpack's output.
// devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js"],
modules: ['src', 'node_modules']
},
module: makeWebPackModule([ visitorFactory ]),
plugins: [
new HtmlWebpackPlugin(),
new MergeAndFlushI18nPlugin(state),
new CompressionPlugin({
filename: '[path].gz[query]',
algorithm: 'gzip',
test: /\.js$|\.css$|\.html$/,
threshold: 1024,
minRatio: 0.8
}),
new BrotliPlugin({
asset: '[path].br[query]',
test: /\.js$|\.css$|\.html$/,
threshold: 1024,
minRatio: 0.8
})
]
};