InfoLens / client /src /webpack.config.js
dqy08's picture
改进首页布局,增加视频预览;简化demo清单逻辑。
82b33f3
const fs = require('fs');
const path = require('path');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const { expandHtmlIncludes } = require('./scripts/includeHtmlPartials.js');
const { injectPageMeta } = require('./scripts/injectPageMetaIntoHtml.js');
const { GenAttributeDemoManifestPlugin } = require('./scripts/genAttributeDemoManifestPlugin.js');
const SRC_ROOT = __dirname;
const PAGE_META_DOC = JSON.parse(
fs.readFileSync(path.join(SRC_ROOT, 'content', 'page-meta.json'), 'utf8')
);
function copyHtmlWithIncludesAndPageMeta(from, to, pageKey) {
return {
from,
to,
transform(content) {
const expanded = expandHtmlIncludes(content.toString('utf8'), SRC_ROOT);
return injectPageMeta(expanded, pageKey, PAGE_META_DOC);
},
};
}
module.exports = {
entry: {
home: './ts/home.ts',
start: './ts/start.ts',
compare: './ts/compare.ts',
chat: './ts/chat.ts',
attribution: './ts/attribution.ts',
gen_attribute: './ts/gen_attribute.ts',
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true // Faster compilation, type checking done by ForkTsCheckerWebpackPlugin
}
}
},
{
test: /\.s?css$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true
}
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
api: 'modern'
}
}
]
},
{
test: /\.(png|jpg)$/,
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 20000 // inline <= 20kb
}
}
},
{
test: /\.mov$/,
type: 'asset/resource'
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 20000 // inline <= 20kb
}
},
generator: {
dataUrl: {
mimetype: 'application/font-woff'
}
}
},
{
test: /\.svg(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 10000 // inline <= 10kb
}
},
generator: {
dataUrl: {
mimetype: 'image/svg+xml'
}
}
},
{
test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
type: 'asset/resource'
},
{
test: /\.html$/,
exclude: /index\.html|analysis\.html|compare\.html|chat\.html|attribution\.html|gen_attribute\.html/,
type: 'asset/source'
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
// filename: "style.css",
// chunkFilename: "chunk.css"
}),
new ForkTsCheckerWebpackPlugin({
typescript: {
diagnosticOptions: {
semantic: true,
syntactic: true,
},
memoryLimit: 4096 // Increase memory limit
},
}),
new CopyWebpackPlugin({
patterns: [
{
from: 'demos/gen_attribute',
to: 'demos/gen_attribute',
context: path.join(__dirname),
filter: (resourcePath) => /\.json$/i.test(resourcePath),
noErrorOnMissing: true,
},
// Demo JSON files now live under data/demo and are served by the backend,
// so we only need to copy the HTML shell into the dist folder.
copyHtmlWithIncludesAndPageMeta('index.html', 'index.html', 'home'),
copyHtmlWithIncludesAndPageMeta('analysis.html', 'analysis.html', 'analysis'),
{ from: 'compare.html', to: 'compare.html' },
copyHtmlWithIncludesAndPageMeta('chat.html', 'chat.html', 'chat'),
copyHtmlWithIncludesAndPageMeta('attribution.html', 'attribution.html', 'attribution'),
copyHtmlWithIncludesAndPageMeta('gen_attribute.html', 'gen_attribute.html', 'genAttribute'),
]
}),
new GenAttributeDemoManifestPlugin(),
],
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: "initial",
name: "vendor",
priority: 10,
enforce: true
}
}
}
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, '../dist/'),
clean: true // Clean output directory before emit
},
performance: {
hints: false, // Disable performance hints
maxEntrypointSize: 512000, // 500KB
maxAssetSize: 512000 // 500KB
},
devServer: {
port: 8090,
proxy: {
'/api': {
target: 'http://localhost:5001',
secure: false,
ws: true
},
'/v1': {
target: 'http://localhost:5001',
secure: false
}
}
}
};