加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2017-12-12 22:08 . init
var webpack = require('webpack');
path = require('path');
module.exports = {
entry: {
//add [] to fix: Module not found: Error: a dependency to an entry point is not allowed
'./sdk/dist/websdk-1.4.13': ['./sdk/index'],
'./demo/javascript/dist/demo-1.4.13': ['./demo/javascript/src/entry'],
'./webrtc/dist/webrtc-1.4.13': ['./webrtc/src/entry']
},
output: {
path: './',
publicPath: './',
filename: '[name].js'
},
// devtool: '#eval-cheap-module-source-map',
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [
{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader'
},
{
test: /\.svg|woff|eot|ttf$/,
loader: require.resolve('file-loader') + '?name=[path][name].[ext]'
}
]
},
plugins: [
// new webpack.NoErrorsPlugin(),
// production must be with `UglifyJsPlugin` or ie9 crash
// faster your app better use
// https://github.com/facebook/react/issues/7803
// new webpack.DefinePlugin({
// 'process.env': {
// 'NODE_ENV': '"production"'
// }
// }),
// new webpack.optimize.UglifyJsPlugin({
// compressor: {
// warnings: false
// }
// })
],
}
;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化