1 Star 0 Fork 0

yseric/VideoContext

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* eslint-env node */
const env = process.env.TEST_SUITE;
module.exports = {
mode: env === "build" ? "production" : "development",
entry: __dirname + "/src/videocontext.js",
devtool: "source-map",
stats: { warnings: false },
output: {
path: __dirname + "/dist",
filename: "videocontext.js",
libraryTarget: "umd",
library: "VideoContext"
},
module: {
rules: [
{ test: /\.css$/, use: "style!css" },
{ test: /\.(frag|vert)$/, use: "raw-loader" },
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{ loader: "babel-loader" },
{ loader: "eslint-loader" }
]
}
]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ananeric/VideoContext.git
git@gitee.com:ananeric/VideoContext.git
ananeric
VideoContext
VideoContext
master

搜索帮助