19 Star 127 Fork 33

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',
};
JavaScript
1
https://gitee.com/cncgx/vue-view-lazy.git
git@gitee.com:cncgx/vue-view-lazy.git
cncgx
vue-view-lazy
vue-view-lazy
master

搜索帮助