当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 9 Fork 3

JetLu/fisher
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
JetLu 提交于 2019-08-05 22:26 . update
const
path = require('path'),
webpack = require('webpack')
const isProd = process.env.NODE_ENV === 'production'
module.exports = {
entry: [
'@iro/wechat-adapter',
'./src/app.js'
],
output: {
path: path.resolve('dist'),
filename: 'game.js'
},
devtool: isProd ? false : 'source-map',
stats: 'errors-only',
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/
},
{
test: /\.(vert|frag)$/,
use: ['raw-loader']
}
]
},
plugins: [
new webpack.ProvidePlugin({
PIXI: 'pixi.js'
})
],
mode: isProd ? 'production' : 'development'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LF/fisher.git
git@gitee.com:LF/fisher.git
LF
fisher
fisher
master

搜索帮助