mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.2 KiB
86 lines
2.2 KiB
6 years ago
|
// Copyright 2018 The go-ethereum Authors
|
||
7 years ago
|
// This file is part of the go-ethereum library.
|
||
|
//
|
||
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU Lesser General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public License
|
||
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
6 years ago
|
target: 'web',
|
||
|
entry: {
|
||
|
bundle: './index',
|
||
7 years ago
|
},
|
||
|
output: {
|
||
6 years ago
|
filename: '[name].js',
|
||
|
path: path.resolve(__dirname, ''),
|
||
|
sourceMapFilename: '[file].map',
|
||
|
},
|
||
|
resolve: {
|
||
|
modules: [
|
||
|
'node_modules',
|
||
|
path.resolve(__dirname, 'components'), // import './components/Component' -> import 'Component'
|
||
|
],
|
||
|
extensions: ['.js', '.jsx'],
|
||
7 years ago
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.jsx$/, // regexp for JSX files
|
||
|
exclude: /node_modules/,
|
||
|
use: [ // order: from bottom to top
|
||
|
{
|
||
|
loader: 'babel-loader',
|
||
|
options: {
|
||
|
presets: [ // order: from bottom to top
|
||
6 years ago
|
'@babel/env',
|
||
|
'@babel/react',
|
||
|
],
|
||
|
plugins: [ // order: from top to bottom
|
||
|
'@babel/proposal-function-bind', // instead of stage 0
|
||
|
'@babel/proposal-class-properties', // static defaultProps
|
||
|
'@babel/transform-flow-strip-types',
|
||
|
'react-hot-loader/babel',
|
||
7 years ago
|
],
|
||
|
},
|
||
|
},
|
||
6 years ago
|
// 'eslint-loader', // show errors in the console
|
||
7 years ago
|
],
|
||
|
},
|
||
|
{
|
||
6 years ago
|
test: /\.css$/,
|
||
|
oneOf: [
|
||
|
{
|
||
|
test: /font-awesome/,
|
||
|
use: [
|
||
|
'style-loader',
|
||
|
'css-loader',
|
||
|
path.resolve(__dirname, './fa-only-woff-loader.js'),
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
use: [
|
||
|
'style-loader',
|
||
|
'css-loader',
|
||
|
],
|
||
|
},
|
||
7 years ago
|
],
|
||
|
},
|
||
|
{
|
||
|
test: /\.woff2?$/, // font-awesome icons
|
||
|
use: 'url-loader',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
7 years ago
|
};
|