element-plus/website/webpack.config.js

144 lines
3.4 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')
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-15 12:28:12 +08:00
const babelOptions = {
plugins: ['@vue/babel-plugin-jsx'],
}
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',
2020-08-25 09:58:26 +08:00
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$/,
2020-09-15 12:28:12 +08:00
exclude: /node_modules/,
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/],
transpileOnly: true,
},
},
2020-09-15 12:28:12 +08:00
{
test: /\.tsx$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: babelOptions,
},
{
loader: 'ts-loader',
options: {
appendTsxSuffixTo: [/\.vue$/],
transpileOnly: true,
},
},
],
},
{
test: /\.js(x?)$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: babelOptions,
},
],
},
{
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,
},
}
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({
filename: '[name].[contenthash].css',
chunkFilename: '[id].[contenthash].css',
}))
cssRule.use.unshift(MiniCssExtractPlugin.loader)
} else {
cssRule.use.unshift('style-loader')
}
config.module.rules.push(cssRule)
module.exports = config