mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
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';
|
|
import StyleLintPlugin from 'stylelint-webpack-plugin';
|
|
|
|
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(),
|
|
new StyleLintPlugin({
|
|
files: ['src/**/*.scss'],
|
|
failOnError: false,
|
|
emitErrors: false,
|
|
syntax: 'scss',
|
|
}),
|
|
],
|
|
};
|