2017-07-03 22:28:56 -05:00

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
};