35 Star 592 Fork 87

腾讯开源/vConsole

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.serve.config.js 2.74 KB
一键复制 编辑 原始数据 按行查看 历史
const Path = require('path');
const fs = require('fs');
const webpack = require('webpack');
const { merge } = require('webpack-merge');
const baseConfig = require('./webpack.config.js');
const contentBase = Path.join(__dirname, '/');
module.exports = (env, argv) => {
return merge(baseConfig(env, argv), {
mode: 'development',
// devtool: 'eval-source-map',
devtool: false,
devServer: {
host: '0.0.0.0',
port: 9191,
open: 'dev/index.html',
allowedHosts: 'all',
historyApiFallback: true,
client: {
overlay: true,
},
static: [
{ directory: contentBase, },
],
onBeforeSetupMiddleware(devServer) {
devServer.app.all('*', (req, res) => {
const contentType = {
'flv': 'video/x-flv',
'wav': 'audio/x-wav',
};
const fileType = req.path.split('.').pop();
// console.log('Req:::', fileType, req.path, req.query);
if (fileType === 'flv') {
res.set({
'Content-Type': contentType[fileType],
// 'Content-Type', 'application/octet-stream',
'Transfer-Encoding': 'chunked',
'Connection': 'keep-alive',
});
let n = 0;
const write = () => {
setTimeout(() => {
n++;
const buf = Buffer.alloc(100000, 1);
res.write(buf);
if (n < 100) {
write();
} else {
res.end();
}
}, 100);
};
write();
} else {
const delay = req.query.t || Math.ceil(Math.random() * 100);
setTimeout(() => {
const filePath = Path.join(contentBase, req.path);
try {
fs.accessSync(filePath, fs.constants.F_OK);
res.type(fileType);
res.status(req.query.s || 200);
if (req.query.chunked) {
res.set({
'Transfer-Encoding': 'chunked',
'Connection': 'keep-alive',
});
res.write(fs.readFileSync(filePath));
} else {
res.send(fs.readFileSync(filePath));
}
// res.sendFile(filePath, options);
} catch (e) {
res.status(404);
res.end();
}
// console.log(req.query);
}, delay);
}
});
}
},
optimization: {
minimize: false,
},
plugins: [
new webpack.HotModuleReplacementPlugin()
]
});
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Tencent/vConsole.git
git@gitee.com:Tencent/vConsole.git
Tencent
vConsole
vConsole
dev

搜索帮助

Cb406eda 1850385 E526c682 1850385