39 lines
820 B
JavaScript
39 lines
820 B
JavaScript
'use strict';
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
port: process.env.HTTPS ? 3443 : 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-saga',
|
|
'whatwg-fetch'
|
|
],
|
|
// Settings for webpack-image-loader image compression
|
|
imageCompressionOptions: {
|
|
optipng: {
|
|
optimizationLevel: 4
|
|
},
|
|
gifsicle: {
|
|
interlaced: false
|
|
},
|
|
mozjpeg: {
|
|
quality: 80
|
|
},
|
|
svgo: {
|
|
plugins: [
|
|
{ removeViewBox: true },
|
|
{ removeEmptyAttrs: false },
|
|
{ sortAttrs: true }
|
|
]
|
|
}
|
|
}
|
|
};
|