mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* wip: vuex structure * add missing files * client: do not fail dev build on eslint error * eslint does not block compilation, mount app when data is ready * eslintrc.js -> eslintrc
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
var config = require('./config');
|
|
var webpack = require('webpack');
|
|
var merge = require('webpack-merge');
|
|
var utils = require('./utils');
|
|
var baseWebpackConfig = require('./webpack.base.conf');
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
// add hot-reload related code to entry chunks
|
|
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
|
|
baseWebpackConfig.entry[name] = ['./webpack/dev-client'].concat(baseWebpackConfig.entry[name]);
|
|
});
|
|
|
|
module.exports = merge(baseWebpackConfig, {
|
|
module: {
|
|
loaders: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap }),
|
|
},
|
|
// eval-source-map is faster for development
|
|
devtool: '#eval-source-map',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': config.dev.env,
|
|
}),
|
|
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
// https://github.com/ampedandwired/html-webpack-plugin
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: './website/client/index.html',
|
|
inject: true,
|
|
}),
|
|
],
|
|
});
|