2 Star 0 Fork 0

shj/iot-meeting

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.prod.config.js 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
xl 提交于 2018-11-27 18:45 . 添加域名子目录
var path = require("path");
var webpack = require("webpack");
var CopyWebpackPlugin = require('copy-webpack-plugin');
var publicPathSrc = '/iot-meeting';
module.exports = {
entry: ["whatwg-fetch","./src/App.jsx"],
output: {
path: path.resolve(__dirname, "." + publicPathSrc),
filename: 'assets/js/bundle.js',
publicPath: publicPathSrc
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production'),
'IMAGE_PRIFIX' :JSON.stringify('http://wx.ibosplus.com')
}
}),
// new webpack.optimize.CommonsChunkPlugin("vendor", "vendor.bundle.js"),
new webpack.optimize.UglifyJsPlugin({
mangle: false,
compress: {
warnings: false
}
}),
new CopyWebpackPlugin([{
from: './assets',
to: './assets'
}, {
from: './index.html',
to: './index.html'
}])
],
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel', // 'babel-loader' is also a legal name to reference
query: {
presets: ['react', 'es2015']
}
},
{
test: /\.js$/,
loaders: [ 'babel' ],
exclude: /node_modules/,
include: __dirname
},
{test: /\.(png|jpg)$/, loader: 'url-loader?limit=8192'}
]
},
externals: {},
resolve: {
extensions: ['', '.js', '.jsx']
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/suhaijun_626/iot-meeting.git
git@gitee.com:suhaijun_626/iot-meeting.git
suhaijun_626
iot-meeting
iot-meeting
master

搜索帮助