strapi/packages/strapi-admin/webpack.config.js

254 lines
7.0 KiB
JavaScript
Raw Normal View History

const path = require('path');
const webpack = require('webpack');
// Webpack plugins
const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin');
const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const DuplicatePckgChecker = require('duplicate-package-checker-webpack-plugin');
2019-04-29 15:48:16 +02:00
const TerserPlugin = require('terser-webpack-plugin');
const isWsl = require('is-wsl');
const alias = require('./webpack.alias.js');
2019-04-29 15:48:16 +02:00
// TODO: parametrize
const URLs = {
2019-04-24 14:32:20 +02:00
host: '/admin/',
backend: 'http://localhost:1337',
mode: 'host',
};
2019-04-29 15:48:16 +02:00
module.exports = ({ publicPath = '/admin/', entry, dest, env }) => {
const isProduction = env === 'production';
const webpackPlugins = isProduction
2019-04-25 12:34:55 +02:00
? [
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
}),
new MiniCssExtractPlugin({
2019-04-29 15:48:16 +02:00
filename: '[name].[chunkhash].css',
chunkFilename: '[name].[chunkhash].chunkhash.css',
2019-04-25 12:34:55 +02:00
}),
2019-04-29 15:48:16 +02:00
]
: [
new DuplicatePckgChecker({
verbose: true,
}),
new FriendlyErrorsWebpackPlugin(),
2019-04-25 12:34:55 +02:00
];
2019-04-29 15:48:16 +02:00
const scssLoader = isProduction
? [
2019-04-25 12:34:55 +02:00
{
loader: MiniCssExtractPlugin.loader,
options: {
fallback: require.resolve('style-loader'),
2019-04-29 15:48:16 +02:00
publicPath: publicPath,
2019-04-25 12:34:55 +02:00
},
},
2019-04-29 15:48:16 +02:00
]
: [{ loader: 'style-loader', options: {} }];
2019-04-29 15:48:16 +02:00
return {
mode: isProduction ? 'production' : 'development',
bail: isProduction ? true : false,
devtool: isProduction ? false : 'cheap-module-source-map',
entry,
output: {
path: dest,
publicPath: publicPath,
// Utilize long-term caching by adding content hashes (not compilation hashes)
// to compiled assets for production
filename: isProduction ? '[name].js' : '[name].[chunkhash].js',
chunkFilename: isProduction
? '[name].chunk.js'
: '[name].[chunkhash].chunk.js',
},
2019-04-29 15:48:16 +02:00
optimization: {
minimize: isProduction,
minimizer: [
// Copied from react-scripts
new TerserPlugin({
terserOptions: {
parse: {
ecma: 8,
},
2019-04-29 15:48:16 +02:00
compress: {
ecma: 5,
warnings: false,
comparisons: false,
inline: 2,
},
mangle: {
safari10: true,
},
output: {
ecma: 5,
comments: false,
ascii_only: true,
},
},
2019-04-29 15:48:16 +02:00
parallel: !isWsl,
// Enable file caching
cache: true,
sourceMap: false,
}),
],
// splitChunks: {
// chunks: 'all',
// name: false,
// },
runtimeChunk: true,
},
module: {
rules: [
{
test: /\.m?js$/,
exclude: /node_modules/,
use: {
loader: require.resolve('babel-loader'),
options: {
2019-04-29 15:48:16 +02:00
cacheDirectory: true,
cacheCompression: isProduction,
compact: isProduction,
presets: [
require.resolve('@babel/preset-env'),
require.resolve('@babel/preset-react'),
],
plugins: [
require.resolve('@babel/plugin-proposal-class-properties'),
require.resolve('@babel/plugin-syntax-dynamic-import'),
require.resolve(
'@babel/plugin-proposal-async-generator-functions'
),
[
require.resolve('@babel/plugin-transform-runtime'),
{
helpers: true,
regenerator: true,
},
],
],
},
},
2019-04-29 15:48:16 +02:00
},
{
test: /\.css$/,
include: /node_modules/,
use: [
{
loader: require.resolve('style-loader'),
},
{
loader: require.resolve('css-loader'),
options: {
sourceMap: false,
},
},
2019-04-29 15:48:16 +02:00
{
loader: require.resolve('postcss-loader'),
options: {
config: {
path: path.resolve(__dirname, 'postcss.config.js'),
},
},
2019-04-29 15:48:16 +02:00
},
],
},
{
test: /\.scss$/,
use: scssLoader.concat([
{
loader: require.resolve('css-loader'),
options: {
localIdentName: '[local]__[path][name]__[hash:base64:5]',
modules: true,
importLoaders: 1,
sourceMap: false,
},
2019-04-29 15:48:16 +02:00
},
{
loader: require.resolve('postcss-loader'),
options: {
config: {
path: path.resolve(__dirname, 'postcss.config.js'),
},
},
2019-04-29 15:48:16 +02:00
},
{
loader: 'sass-loader',
},
]),
},
{
test: /\.(svg|eot|otf|ttf|woff|woff2)$/,
use: 'file-loader',
},
{
test: /\.(jpg|png|gif)$/,
loaders: [
require.resolve('file-loader'),
{
loader: require.resolve('image-webpack-loader'),
query: {
mozjpeg: {
progressive: true,
},
gifsicle: {
interlaced: false,
},
optipng: {
optimizationLevel: 4,
},
pngquant: {
quality: '65-90',
speed: 4,
},
},
},
2019-04-29 15:48:16 +02:00
],
},
{
test: /\.html$/,
include: [path.join(__dirname, 'src')],
use: require.resolve('html-loader'),
},
{
test: /\.(mp4|webm)$/,
loader: require.resolve('url-loader'),
options: {
limit: 10000,
},
},
2019-04-29 15:48:16 +02:00
],
},
resolve: {
alias,
symlinks: false,
extensions: ['.js', '.jsx', '.react.js'],
mainFields: ['browser', 'jsnext:main', 'main'],
},
plugins: [
new HtmlWebpackPlugin({
inject: true,
template: path.resolve(__dirname, 'index.html'),
favicon: path.resolve(__dirname, 'admin/src/favicon.ico'),
}),
new SimpleProgressWebpackPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
REMOTE_URL: JSON.stringify(URLs.host),
BACKEND_URL: JSON.stringify(URLs.backend),
MODE: JSON.stringify(URLs.mode), // Allow us to define the public path for the plugins assets.
PUBLIC_PATH: JSON.stringify(publicPath),
}),
2019-04-29 15:48:16 +02:00
...webpackPlugins,
],
};
};