1 Star 0 Fork 2

石军/my_utils

forked from ykang2020/my_utils 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 558 Bytes
一键复制 编辑 原始数据 按行查看 历史
ykang2020 提交于 2021-04-25 20:43 . 打包发布
const path = require("path");
module.exports = {
// 入口
entry: "./src/index.js",
mode: "development",
// 出口
output: {
// 打包文件夹
publicPath: path.resolve(__dirname, "dist"),
// 打包文件
filename: "yk-utils.js",
// 设置对外暴露对象的全局名称
library: "ykUtils",
// 打包生成通过esm、commonjs、requirejs的语法引入
libraryTarget: "umd",
},
// 配置webpack-dev-server
devServer: {
// 静态根目录
contentBase: "www",
// 端口号
port: 8080,
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/andyssi/my_utils.git
git@gitee.com:andyssi/my_utils.git
andyssi
my_utils
my_utils
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385