1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 17:28:10 +00:00
trezor-wallet/webpack/config.prod.babel.js

106 lines
3.0 KiB
JavaScript
Raw Normal View History

2018-05-17 20:08:34 +00:00
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
2018-07-30 10:47:37 +00:00
import { SRC, BUILD } from './constants';
2018-05-17 20:08:34 +00:00
module.exports = {
mode: 'production',
entry: {
2018-07-30 10:47:37 +00:00
index: [`${SRC}js/index.js`],
2018-05-17 20:08:34 +00:00
},
output: {
filename: 'js/[name].[hash].js',
path: BUILD,
publicPath: './',
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
2018-07-30 10:47:37 +00:00
use: ['babel-loader'],
2018-05-17 20:08:34 +00:00
},
{
test: /\.less$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
2018-07-30 10:47:37 +00:00
options: { publicPath: '../' },
},
2018-07-30 10:47:37 +00:00
{
2018-05-17 20:08:34 +00:00
loader: 'css-loader',
2018-07-30 10:47:37 +00:00
options: {
minimize: false,
2018-07-30 10:47:37 +00:00
},
2018-05-17 20:08:34 +00:00
},
2018-07-30 10:47:37 +00:00
{
2018-05-17 20:08:34 +00:00
loader: 'less-loader',
2018-07-30 10:47:37 +00:00
options: {
minimize: false,
2018-07-30 10:47:37 +00:00
},
},
],
2018-05-17 20:08:34 +00:00
},
{
test: /\.(png|gif|jpg)$/,
exclude: /(node_modules)/,
loader: 'file-loader',
query: {
outputPath: './images',
2018-07-30 10:47:37 +00:00
name: '[name].[hash].[ext]',
},
2018-05-17 20:08:34 +00:00
},
{
test: /\.(ttf|eot|svg|woff|woff2)$/,
loader: 'file-loader',
query: {
outputPath: './fonts',
name: '[name].[hash].[ext]',
},
},
{
type: 'javascript/auto',
test: /\.json/,
exclude: /(node_modules)/,
loader: 'file-loader',
query: {
outputPath: './data',
name: '[name].[hash].[ext]',
2018-05-17 20:08:34 +00:00
},
},
2018-07-30 10:47:37 +00:00
],
2018-05-17 20:08:34 +00:00
},
resolve: {
modules: [SRC, 'node_modules'],
},
performance: {
2018-07-30 10:47:37 +00:00
hints: false,
2018-05-17 20:08:34 +00:00
},
plugins: [
new MiniCssExtractPlugin({
filename: 'css/[name].[hash].css',
}),
2018-07-30 10:47:37 +00:00
2018-05-17 20:08:34 +00:00
new HtmlWebpackPlugin({
chunks: ['index'],
template: `${SRC}index.html`,
filename: 'index.html',
2018-07-30 10:47:37 +00:00
inject: true,
2018-05-17 20:08:34 +00:00
}),
new CopyWebpackPlugin([
//{from: `${SRC}/app/robots.txt`},
{ from: `${SRC}images/favicon.ico`, to: `${BUILD}favicon.ico` },
{ from: `${SRC}images/favicon.png`, to: `${BUILD}favicon.png` },
{ from: `${SRC}data`, to: `${BUILD}data`, cache: false },
{ from: `${SRC}assets`, to: `${BUILD}assets`, cache: false },
]),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new webpack.NamedModulesPlugin(),
2018-07-30 10:47:37 +00:00
],
};