25 lines
501 B
JavaScript
Raw Normal View History

2017-07-03 22:28:56 -05:00
'use strict';
const path = require('path');
module.exports = {
port: 3000,
2017-04-24 18:36:59 -05:00
title: 'MEW',
2017-07-03 22:28:56 -05:00
publicPath: process.env.BUILD_GH_PAGES ? '/react-semantic.ui-starter/' : '/',
srcPath: path.join(__dirname, './../common'),
// add these dependencies to a standalone vendor bundle
vendor: [
2017-07-03 22:28:56 -05:00
'react',
'react-dom',
'react-router',
'redux',
'react-router-redux',
'redux-thunk',
'whatwg-fetch'
],
// enable babelrc
babel: {
babelrc: true
},
cssModules: false
2017-07-03 22:28:56 -05:00
};