skyline-console/config/webpack.prod.js
Hanxiang Gao 4eb68e7fb2 feat: Add initial code of skyline-console
Add initial code of skyline-console

Change-Id: Icba2152a014761f53789357b5085d0779cd0e2a4
2021-06-01 23:29:30 +08:00

175 lines
4.8 KiB
JavaScript

// Copyright 2021 99cloud
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
const { resolve } = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const HtmlWebPackPlugin = require('html-webpack-plugin');
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const autoprefixer = require('autoprefixer');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const CompressionWebpackPlugin = require('compression-webpack-plugin');
const common = require('./webpack.common');
const theme = require('./theme');
const root = (path) => resolve(__dirname, `../${path}`);
const { version, ...restConfig } = common;
module.exports = (env) => {
const API = (env || {}).API || 'mock';
return merge(restConfig, {
entry: {
main: root('src/core/index.jsx'),
},
output: {
filename: '[name].js',
path: root('skyline_console/static'),
publicPath: '/',
chunkFilename: `[name].bundle.${version}.js`,
},
mode: 'production',
// devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
],
},
{
test: /\.(css|less)$/,
exclude: /node_modules/,
use: [
{
loader: 'style-loader', // creates style nodes from JS strings
},
{
loader: 'css-loader', // translates CSS into CommonJS
options: {
modules: {
mode: 'global',
},
localIdentName: '[name]__[local]--[hash:base64:5]',
},
},
{
loader: 'postcss-loader',
options: {
plugins: [autoprefixer('last 2 version')],
sourceMap: false,
},
},
{
loader: 'less-loader', // compiles Less to CSS
options: {
importLoaders: true,
javascriptEnabled: true,
},
},
],
},
{
test: /\.(less)$/,
include: /node_modules/,
use: [
{
loader: 'style-loader', // creates style nodes from JS strings
},
{
loader: 'css-loader', // translates CSS into CommonJS
},
{
loader: 'less-loader', // compiles Less to CSS
options: {
javascriptEnabled: true,
modifyVars: theme,
},
},
],
},
],
},
plugins: [
// 热更新没必要。
// new webpack.HotModuleReplacementPlugin(),
// new OpenBrowserPlugin({
// url: 'http://localhost:8080',
// browser: "Google Chrome",
// }),
new webpack.DefinePlugin({
// 为项目注入环境变量
'process.env.API': JSON.stringify(API),
}),
new HtmlWebPackPlugin({
template: root('src/asset/template/index.html'),
favicon: root('src/asset/image/favicon.ico'),
}),
new CleanWebpackPlugin(['dist'], {
root: resolve(__dirname, `../`),
}),
new CompressionWebpackPlugin({
algorithm: 'gzip',
test: /\.js$/,
threshold: 10240,
minRatio: 0.8,
}),
// new BundleAnalyzerPlugin(),
],
optimization: {
splitChunks: {
maxInitialRequests: 10,
cacheGroups: {
commons: {
chunks: 'async',
name: 'common',
minChunks: 2,
minSize: 0,
},
vendor: {
test: /node_modules/,
chunks: 'async',
name: 'vendor',
priority: 10,
enforce: true,
},
},
},
runtimeChunk: {
name: () => `runtime.${version}`,
},
minimize: true, // default true for production
minimizer: [
new TerserPlugin({
extractComments: false,
sourceMap: false,
terserOptions: {
compress: {
drop_console: true,
},
},
}),
],
},
});
};