2023-02-21 17:58:09 +08:00
|
|
|
|
/*eslint-disable*/
|
2023-02-17 17:59:41 +08:00
|
|
|
|
const { join } = require('path');
|
|
|
|
|
const path = require('path');
|
|
|
|
|
const { readdirSync, statSync } = require('fs');
|
|
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
|
const isDev = process.env.RUNNING_ENV === 'dev';
|
|
|
|
|
const isProd = process.env.RUNNING_ENV === 'prod';
|
|
|
|
|
const webpack = require('webpack');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 引入 src/view/pages下的页面文件,排除 _ 开头的文件夹
|
|
|
|
|
*/
|
|
|
|
|
const importEntry = () => {
|
|
|
|
|
const entries = {};
|
|
|
|
|
const rootDir = join(process.cwd(), '/view/page');
|
|
|
|
|
readdirSync(rootDir)
|
|
|
|
|
.filter(i => !i.startsWith('_'))
|
|
|
|
|
.forEach(file => {
|
|
|
|
|
if (statSync(join(rootDir, file)).isDirectory())
|
|
|
|
|
entries[file] = `/view/page/${file}/index.ts`;
|
|
|
|
|
});
|
|
|
|
|
return entries;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2023-02-21 17:58:09 +08:00
|
|
|
|
entry: {
|
|
|
|
|
...importEntry(),
|
|
|
|
|
},
|
2023-02-17 17:59:41 +08:00
|
|
|
|
output: {
|
2023-02-21 17:58:09 +08:00
|
|
|
|
path: path.resolve(__dirname, 'public/'),
|
2023-02-17 17:59:41 +08:00
|
|
|
|
publicPath: '',
|
|
|
|
|
filename: '[name].js',
|
|
|
|
|
chunkFilename: '[id].chunk.js?[hash:8]',
|
|
|
|
|
},
|
|
|
|
|
mode: isDev ? 'development' : 'production',
|
2023-02-21 17:58:09 +08:00
|
|
|
|
optimization: {
|
|
|
|
|
splitChunks: {
|
|
|
|
|
chunks: 'all',
|
|
|
|
|
cacheGroups: {
|
|
|
|
|
vendor: {
|
|
|
|
|
name: 'chunk-vendors',
|
|
|
|
|
test: /[\\/]node_modules[\\/]/,
|
|
|
|
|
priority: 10,
|
|
|
|
|
chunks: 'initial'
|
|
|
|
|
},
|
|
|
|
|
lib: {
|
|
|
|
|
test(module) {
|
|
|
|
|
return (
|
|
|
|
|
module.size() > 160000 &&
|
|
|
|
|
/node_modules[/\\]/.test(module.nameForCondition() || '')
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
name: 'chunk-lib',
|
|
|
|
|
priority: 15,
|
|
|
|
|
minChunks: 1,
|
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-02-17 17:59:41 +08:00
|
|
|
|
module: {
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
test: /\.ts?$/,
|
|
|
|
|
use: 'ts-loader',
|
|
|
|
|
exclude: /node_modules/,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
test: /\.js$/,
|
|
|
|
|
loader: 'babel-loader',
|
|
|
|
|
exclude: /node_modules/,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
test: /\.css$/,
|
|
|
|
|
use: [MiniCssExtractPlugin.loader, 'css-loader'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
test: /\.less$/,
|
|
|
|
|
use: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader'],
|
|
|
|
|
},
|
2023-02-21 17:58:09 +08:00
|
|
|
|
{
|
|
|
|
|
test: /\.(scss)$/,
|
|
|
|
|
use: [
|
|
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
|
{
|
|
|
|
|
loader: 'css-loader'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
|
options: {
|
|
|
|
|
postcssOptions: {
|
|
|
|
|
plugins: () => [
|
|
|
|
|
require('autoprefixer')
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
loader: 'sass-loader'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2023-02-17 17:59:41 +08:00
|
|
|
|
{
|
|
|
|
|
test: /\.(png|jpg|gif)$/i,
|
|
|
|
|
use: [
|
|
|
|
|
{
|
|
|
|
|
loader: 'url-loader',
|
|
|
|
|
options: {
|
|
|
|
|
limit: 8192,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
new MiniCssExtractPlugin({
|
|
|
|
|
filename: '[name].css',
|
|
|
|
|
chunkFilename: '[id].css?[hash:8]',
|
|
|
|
|
}),
|
|
|
|
|
new CopyPlugin([
|
|
|
|
|
{ from: join(process.cwd(), 'view/assets'), to: 'assets' },
|
|
|
|
|
]),
|
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
|
process: 'process/browser',
|
|
|
|
|
Buffer: ['buffer', 'Buffer'],
|
|
|
|
|
}),
|
|
|
|
|
].filter(Boolean),
|
|
|
|
|
resolve: {
|
|
|
|
|
extensions: ['.ts', '.js', '.ejs'],
|
|
|
|
|
fallback: {
|
|
|
|
|
crypto: require.resolve('crypto-browserify'),
|
|
|
|
|
stream: require.resolve('stream-browserify'),
|
|
|
|
|
assert: require.resolve('assert'),
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-02-21 17:58:09 +08:00
|
|
|
|
|
|
|
|
|
externals: {
|
|
|
|
|
// require("jquery") 是外部的,并且可用
|
|
|
|
|
// 在全局变量 jQuery 上
|
|
|
|
|
// jquery: 'jQuery',
|
|
|
|
|
// $: 'jQuery',
|
|
|
|
|
},
|
2023-02-17 17:59:41 +08:00
|
|
|
|
};
|