加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/sige5193/bittly
克隆/下载
webpack.config.js 695 Bytes
一键复制 编辑 原始数据 按行查看 历史
四格 提交于 2022-11-25 16:53 . add functional test node "action hub"
/**
* webpack config file
* @note this file was included by vue.config.js
* @link https://webpack.js.org/configuration/
*/
module.exports = {
/**
* options that affect the behavior of webpack-dev-server
* @link https://webpack.js.org/configuration/dev-server/#devserver
*/
devServer: {
onListening: function () {},
},
/**
* Configure how performance hints are shown.
* @link https://webpack.js.org/configuration/performance/
*/
performance: {
hints: 'warning',
maxEntrypointSize: 100 * 1024 * 1024,
maxAssetSize: 60 * 1024 * 1024,
assetFilter: assetFilename => assetFilename.endsWith('.js'),
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化