Skip to content

Commit 8f3341a

Browse files
author
Ives van Hoorne
committed
Remove trailing commas from webpack config
1 parent 83af3e7 commit 8f3341a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

config/webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// prettier-ignore
12
const webpack = require('webpack');
23
const path = require('path');
34
const paths = require('./paths');
@@ -85,8 +86,9 @@ const config = {
8586
options: (() => {
8687
const altererdConfig = Object.assign({}, babelConfig);
8788

89+
// prettier-ignore
8890
altererdConfig.plugins.push(
89-
require.resolve('babel-plugin-transform-remove-strict-mode'),
91+
require.resolve('babel-plugin-transform-remove-strict-mode')
9092
);
9193
return altererdConfig;
9294
})(),

0 commit comments

Comments
 (0)