mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
25 lines
501 B
JavaScript
25 lines
501 B
JavaScript
'use strict';
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
port: 3000,
|
|
title: 'MEW',
|
|
publicPath: process.env.BUILD_GH_PAGES ? '/react-semantic.ui-starter/' : '/',
|
|
srcPath: path.join(__dirname, './../common'),
|
|
// add these dependencies to a standalone vendor bundle
|
|
vendor: [
|
|
'react',
|
|
'react-dom',
|
|
'react-router',
|
|
'redux',
|
|
'react-router-redux',
|
|
'redux-thunk',
|
|
'whatwg-fetch'
|
|
],
|
|
// enable babelrc
|
|
babel: {
|
|
babelrc: true
|
|
},
|
|
cssModules: false
|
|
};
|