1 Star 0 Fork 0

众触应用平台 / zp122_upload_files

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 697 Bytes
一键复制 编辑 原始数据 按行查看 历史
众触应用平台 提交于 2021-07-17 18:54 . Add files via upload
const webpack = require("webpack")
const path = require("path")
module.exports = {
mode: process.env.mode || "development",
devtool: false,
entry: {
"zp122": "./plugins/zp122_批量上传文件.js",
},
output: {
path: path.join(__dirname, "build/"),
filename: "[name].js",
publicPath: "/build/js/"
},
plugins: [
new webpack.SourceMapDevToolPlugin({
filename: "[file].map",
append: "\n//# sourceMappingURL=http://localhost:8080/build/[url]"
})
],
module: {
rules: [{
test: /\.js$/,
use: "babel-loader",
exclude: /node_modules/
}]
}
}
JavaScript
1
https://gitee.com/zcappp/zp122_upload_files.git
git@gitee.com:zcappp/zp122_upload_files.git
zcappp
zp122_upload_files
zp122_upload_files
main

搜索帮助