diff options
author | Starfall <us@starfall.systems> | 2020-09-02 01:15:02 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2020-09-02 01:15:02 -0500 |
commit | fd0b806603dbd632d259d06af789c7195c7264dc (patch) | |
tree | a9ba1b09763ca15a96f927e361bb878b9833bc7d /config/webpack/shared.js | |
parent | a43c1d3f56c128c992f34b8e2b968de14e02ac48 (diff) | |
parent | d967251fdc3826ad27d30e55258cfa4cdfd7c871 (diff) |
Merge branch 'glitch' into main
Diffstat (limited to 'config/webpack/shared.js')
-rw-r--r-- | config/webpack/shared.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/config/webpack/shared.js b/config/webpack/shared.js index 36b5a459e..11c321c58 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -5,7 +5,6 @@ const { basename, dirname, join, relative, resolve } = require('path'); const { sync } = require('glob'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const AssetsManifestPlugin = require('webpack-assets-manifest'); -const CopyPlugin = require('copy-webpack-plugin'); const { env, settings, core, flavours, output } = require('./configuration.js'); const rules = require('./rules'); const localePacks = require('./generateLocalePacks'); @@ -110,12 +109,6 @@ module.exports = { writeToDisk: true, publicPath: true, }), - new CopyPlugin({ - patterns: [ - { from: 'node_modules/tesseract.js/dist/worker.min.js', to: 'ocr' }, - { from: 'node_modules/tesseract.js-core/tesseract-core.wasm.js', to: 'ocr' }, - ], - }), ], resolve: { |