use const instead of var

This commit is contained in:
Johannes Rieken
2019-12-30 10:52:22 +01:00
parent 2e881b9fe1
commit ccd38490b2
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
const withDefaults = require('../../shared.webpack.config');
const path = require('path');
var webpack = require('webpack');
const webpack = require('webpack');
const config = withDefaults({
context: path.join(__dirname),