Skip to content

Commit

Permalink
Fix eslint stuff (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-NRCan authored Dec 20, 2023
1 parent 82eadba commit ce5a5bb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 3 additions & 5 deletions webpack.common.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
Expand Down Expand Up @@ -58,12 +59,9 @@ const config = {
filename: 'index.html',
}),
new CopyWebpackPlugin({
patterns: [
{ from: './public/locales', to: 'locales', noErrorOnMissing: true },
{ from: './favicon.ico' },
],
patterns: [{ from: './public/locales', to: 'locales', noErrorOnMissing: true }, { from: './favicon.ico' }],
}),
]
],
};

module.exports = config;
1 change: 1 addition & 0 deletions webpack.dev.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
Expand Down
1 change: 1 addition & 0 deletions webpack.prod.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');

Expand Down

0 comments on commit ce5a5bb

Please sign in to comment.