element-plus/website/webpack.config.js

121 lines
2.8 KiB
JavaScript
Raw Normal View History

/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path')
const { VueLoaderPlugin } = require('vue-loader')
const HtmlWebpackPlugin = require('html-webpack-plugin')
2020-09-24 11:13:53 +08:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
2020-08-14 01:37:25 +08:00
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const isProd = process.env.NODE_ENV === 'production'
2020-08-25 09:58:26 +08:00
const isPlay = !!process.env.PLAY_ENV
2020-09-24 11:13:53 +08:00
const config = {
mode: isProd ? 'production' : 'development',
2020-09-24 11:13:53 +08:00
devtool: !isProd && 'cheap-module-eval-source-map',
entry: isPlay
? path.resolve(__dirname, './play.js')
: path.resolve(__dirname, './entry.js'),
output: {
path: path.resolve(__dirname, '../website-dist'),
publicPath: '/',
filename: isProd ? '[name].[hash].js' : '[name].js',
},
stats: 'verbose',
module: {
rules: [
{
test: /\.vue$/,
use: 'vue-loader',
},
{
test: /\.(ts|js)x?$/,
2020-09-15 12:28:12 +08:00
exclude: /node_modules/,
loader: 'babel-loader',
2020-09-15 12:28:12 +08:00
},
{
test: /\.md$/,
use: [
{
loader: 'vue-loader',
options: {
compilerOptions: {
preserveWhitespace: false,
},
},
},
{
loader: path.resolve(__dirname, './md-loader/index.js'),
},
],
},
{
test: /\.(svg|otf|ttf|woff2?|eot|gif|png|jpe?g)(\?\S*)?$/,
loader: 'url-loader',
// todo: 这种写法有待调整
query: {
limit: 10000,
name: path.posix.join('static', '[name].[hash:7].[ext]'),
},
},
],
},
resolve: {
2020-09-15 12:28:12 +08:00
extensions: ['.ts', '.tsx', '.js', '.vue', '.json'],
alias: {
vue: 'vue/dist/vue.esm-browser.js',
examples: path.resolve(__dirname),
},
},
plugins: [
new VueLoaderPlugin(),
new HtmlWebpackPlugin({
template: './website/index.tpl',
filename: './index.html',
favicon: './website/favicon.ico',
}),
2020-08-14 01:37:25 +08:00
// new BundleAnalyzerPlugin(),
],
devServer: {
inline: true,
hot: true,
stats: 'minimal',
publicPath: '/',
contentBase: __dirname,
overlay: true,
},
optimization: {
minimize: true,
minimizer: [
new CssMinimizerPlugin(),
],
},
}
2020-09-24 11:13:53 +08:00
const cssRule = {
test: /\.(sass|scss|css)$/,
use: [
'css-loader',
{
loader: 'sass-loader',
options: {
implementation: require('sass'),
},
},
],
}
// if (isProd) {
config.plugins.push(
new MiniCssExtractPlugin({
2020-09-24 11:13:53 +08:00
filename: '[name].[contenthash].css',
chunkFilename: '[id].[contenthash].css',
}),
)
cssRule.use.unshift(MiniCssExtractPlugin.loader)
// } else {
cssRule.use.unshift('style-loader')
// }
2020-09-24 11:13:53 +08:00
config.module.rules.push(cssRule)
module.exports = config