2017-04-12 04:59:58 +00:00
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
port: 3000,
|
2017-04-24 23:36:59 +00:00
|
|
|
title: 'MEW',
|
2017-04-12 04:59:58 +00: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-04-24 23:36:59 +00:00
|
|
|
'react', 'react-dom', 'react-router', 'redux', 'react-router-redux', 'redux-thunk', 'whatwg-fetch'
|
2017-04-12 04:59:58 +00:00
|
|
|
],
|
|
|
|
// enable babelrc
|
|
|
|
babel: {
|
|
|
|
babelrc: true
|
|
|
|
},
|
|
|
|
cssModules: false
|
|
|
|
}
|