quickbuild
Version:
A mature, feature-complete application generator with an emphasis on speed
85 lines (75 loc) • 2.44 kB
JavaScript
const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const BundleTracker = require('webpack-bundle-tracker');
const path = require('path');
const baseConfig = require('./webpack.base.config');
const nodeModulesDir = path.resolve(__dirname, 'node_modules');
baseConfig.mode = 'production';
baseConfig.devtool = 'source-map';
baseConfig.entry = ['whatwg-fetch', '@babel/polyfill', './frontend/js/index.js'];
baseConfig.output = {
path: path.resolve('./frontend/webpack_bundles/'),
publicPath: '',
filename: '[name]-[hash].js',
};
baseConfig.module.rules.push(
{
test: /\.jsx?$/,
exclude: [nodeModulesDir],
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react'],
},
},
},
{
test: /\.(woff(2)?|eot|ttf)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=fonts/[name].[ext]',
}
);
baseConfig.optimization = {
minimize: true,
splitChunks: {
chunks: 'all',
},
};
baseConfig.plugins = [
new webpack.DefinePlugin({
// removes React warnings
'process.env': {
NODE_ENV: JSON.stringify('production'),
},
}),
new MiniCssExtractPlugin({ filename: '[name]-[hash].css', disable: false, allChunks: true }),
new BundleTracker({
filename: './webpack-stats.json',
}),
new webpack.LoaderOptionsPlugin({
options: {
context: __dirname,
postcss: [autoprefixer],
},
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
Tether: 'tether',
'window.Tether': 'tether',
Popper: ['popper.js', 'default'],
Alert: 'exports-loader?Alert!bootstrap/js/dist/alert',
Button: 'exports-loader?Button!bootstrap/js/dist/button',
Carousel: 'exports-loader?Carousel!bootstrap/js/dist/carousel',
Collapse: 'exports-loader?Collapse!bootstrap/js/dist/collapse',
Dropdown: 'exports-loader?Dropdown!bootstrap/js/dist/dropdown',
Modal: 'exports-loader?Modal!bootstrap/js/dist/modal',
Popover: 'exports-loader?Popover!bootstrap/js/dist/popover',
Scrollspy: 'exports-loader?Scrollspy!bootstrap/js/dist/scrollspy',
Tab: 'exports-loader?Tab!bootstrap/js/dist/tab',
Tooltip: 'exports-loader?Tooltip!bootstrap/js/dist/tooltip',
Util: 'exports-loader?Util!bootstrap/js/dist/util',
}),
];
module.exports = baseConfig;