You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
844 B
35 lines
844 B
const url = require('url'); |
|
const webpack = require('webpack'); |
|
const BrowserSyncPlugin = require('browsersync-webpack-plugin'); |
|
|
|
const config = require('./config'); |
|
|
|
const target = process.env.DEVURL || config.devUrl; |
|
|
|
/** |
|
* We do this to enable injection over SSL. |
|
*/ |
|
if (url.parse(target).protocol === 'https:') { |
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0; |
|
} |
|
|
|
module.exports = { |
|
output: { |
|
pathinfo: true, |
|
publicPath: config.proxyUrl + config.publicPath, |
|
}, |
|
devtool: '#cheap-module-source-map', |
|
stats: false, |
|
plugins: [ |
|
new webpack.optimize.OccurrenceOrderPlugin(), |
|
new webpack.HotModuleReplacementPlugin(), |
|
new webpack.NoEmitOnErrorsPlugin(), |
|
new BrowserSyncPlugin({ |
|
target, |
|
open: config.open, |
|
proxyUrl: config.proxyUrl, |
|
watch: config.watch, |
|
delay: 500, |
|
}), |
|
], |
|
};
|
|
|