90 lines
2.2 KiB
JavaScript
90 lines
2.2 KiB
JavaScript
'use strict';
|
|
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
const config = require('./config');
|
|
const _ = require('./utils');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
client: './common/index.jsx'
|
|
},
|
|
output: {
|
|
path: _.outputPath,
|
|
filename: '[name].js',
|
|
publicPath: config.publicPath
|
|
},
|
|
performance: {
|
|
hints: process.env.NODE_ENV === 'production' ? 'warning' : false
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.css', '.json', '.scss', '.less'],
|
|
modules: [
|
|
// places where to search for required modules
|
|
config.srcPath,
|
|
_.cwd('node_modules'),
|
|
_.cwd('./')
|
|
]
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
enforce: 'pre',
|
|
loaders: ['eslint-loader'],
|
|
exclude: [/node_modules/]
|
|
},
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
loaders: ['babel-loader'],
|
|
exclude: [/node_modules\/(?!ethereum-blockies)/]
|
|
},
|
|
{
|
|
test: /\.(ico|webp|eot|otf|ttf|woff|woff2)(\?.*)?$/,
|
|
loader: 'file-loader?limit=100000'
|
|
},
|
|
{
|
|
test: /\.(gif|png|jpe?g|svg)$/i,
|
|
loaders: [
|
|
{
|
|
loader: 'file-loader',
|
|
query: {
|
|
hash: 'sha512',
|
|
digest: 'hex',
|
|
name: '[path][name].[ext]?[hash:6]'
|
|
}
|
|
},
|
|
{
|
|
loader: 'image-webpack-loader',
|
|
query: config.imageCompressionOptions
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.(ico|eot|otf|webp|ttf|woff|woff2)(\?.*)?$/,
|
|
loader: 'file-loader?limit=100000'
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env.BUILD_GH_PAGES': JSON.stringify(!!process.env.BUILD_GH_PAGES)
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
title: config.title,
|
|
template: path.resolve(__dirname, '../common/index.html'),
|
|
filename: _.outputIndexPath
|
|
}),
|
|
new webpack.LoaderOptionsPlugin(_.loadersOptions()),
|
|
new CopyWebpackPlugin([
|
|
{
|
|
from: _.cwd('./static'),
|
|
// to the root of dist path
|
|
to: './'
|
|
}
|
|
])
|
|
],
|
|
target: _.target
|
|
};
|