1 Star 0 Fork 33

刘权/vue-view-lazy

forked from GluTtoNy/vue-view-lazy 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 613 Bytes
一键复制 编辑 原始数据 按行查看 历史
GluTtoNy 提交于 2018-05-16 09:02 . 发布图片懒加载插件
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'vue-view-lazy.min.js',
library: `vViewLazy`,
// libraryTarget: "umd"
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin()//代码压缩
],
devtool: 'source-map',
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/s1ck_Liu/vue-view-lazy.git
git@gitee.com:s1ck_Liu/vue-view-lazy.git
s1ck_Liu
vue-view-lazy
vue-view-lazy
master

搜索帮助