1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/tools/webpack.dev.config.babel.js
Juan Picado @jotadeveloper 3738221bf5
fix: eslint warnings
2017-07-18 21:14:13 +02:00

41 lines
1019 B
JavaScript

import webpack from 'webpack';
import HTMLWebpackPlugin from 'html-webpack-plugin';
import FriendlyErrorsPlugin from 'friendly-errors-webpack-plugin';
import baseConfig from './webpack.config';
import env from '../src/config/env';
export default {
...baseConfig,
entry: {
main: [
'react-hot-loader/patch',
'webpack-dev-server/client?http://localhost:4872',
'webpack/hot/only-dev-server',
`${env.SRC_ROOT}/webui/src/index.js`,
],
},
output: {
...baseConfig.output,
publicPath: '/',
},
plugins: [
new webpack.DefinePlugin({
'__DEBUG__': true,
'process.env.NODE_ENV': '"development"',
}),
new HTMLWebpackPlugin({
title: 'Verdaccio',
filename: 'index.html',
verdaccioURL: '//localhost:4873',
template: `${env.SRC_ROOT}/webui/template/index.html`,
debug: true,
inject: true,
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new FriendlyErrorsPlugin(),
],
};