25 lines
604 B
JavaScript
25 lines
604 B
JavaScript
const webpack = require('webpack');
|
|
const BrowserSyncPlugin = require('browsersync-webpack-plugin');
|
|
|
|
const config = require('./config');
|
|
|
|
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.NoErrorsPlugin(),
|
|
new BrowserSyncPlugin({
|
|
target: config.devUrl,
|
|
publicPath: '../',
|
|
proxyUrl: config.proxyUrl,
|
|
watch: config.watch,
|
|
}),
|
|
],
|
|
};
|