redux-devtools/packages/redux-devtools-core/webpack.config.js

80 lines
1.7 KiB
JavaScript
Raw Normal View History

2019-01-03 17:14:25 +03:00
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
2019-01-10 21:51:14 +03:00
module.exports = (env = {}) => ({
mode: 'development',
entry: {
app: './index.js',
2019-01-10 21:51:14 +03:00
},
output: {
path: path.resolve(__dirname, 'build/' + env.platform),
publicPath: '',
filename: 'js/[name].js',
sourceMapFilename: 'js/[name].map',
2019-01-10 21:51:14 +03:00
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
2019-01-10 21:51:14 +03:00
},
{
test: /\.html$/,
loader: 'html-loader',
2019-01-10 21:51:14 +03:00
},
{
test: /\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
2019-01-10 21:51:14 +03:00
},
{
test: /\.(png|gif|jpg)$/,
loader: 'url-loader',
options: {
limit: '25000',
outputPath: 'images/',
publicPath: 'images/',
},
2019-01-10 21:51:14 +03:00
},
{
test: /\.(ttf|eot|svg|woff|woff2)$/,
loader: 'file-loader',
options: { outputPath: 'fonts/', publicPath: 'fonts/' },
},
],
2019-01-10 21:51:14 +03:00
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(
env.development ? 'development' : 'production'
),
PLATFORM: JSON.stringify(env.platform),
},
2019-01-10 21:51:14 +03:00
}),
new HtmlWebpackPlugin({
template: 'assets/index.html',
}),
2019-01-10 21:51:14 +03:00
],
optimization: {
minimize: false,
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'common',
chunks: 'all',
},
},
},
2019-01-10 21:51:14 +03:00
},
performance: {
hints: false,
2019-01-10 21:51:14 +03:00
},
devServer: {
port: 3000,
2019-01-10 21:51:14 +03:00
},
devtool: env.development ? 'eval-source-map' : 'source-map',
2019-01-10 21:51:14 +03:00
});