archetype-resources.webpack.dev.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-mvc-react-archetype
Show all versions of spring-mvc-react-archetype
A Maven Archetype for projects using Spring MVC, and React + Redux.
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
process.traceDeprecation = true;
module.exports = merge(common, {
mode: 'development',
devtool: 'cheap-module-eval-source-map',
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.LoaderOptionsPlugin({
debug: true
})
]
});
© 2015 - 2024 Weber Informatics LLC | Privacy Policy