Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.config.js « webpack - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9650e04290886a3c9845f37414bbb6b508efe8ad (plain)
1
2
3
4
5
6
7
8
const baseConfig = require('./base.config.js');
const merge = require('webpack-merge');

module.exports = merge(baseConfig, {
  mode: 'development',  
  devtool: 'eval-source-map',
  watch: true
});