Add OCR tool to media editing modal (#11566)
This commit is contained in:
parent
f178a01c11
commit
28636f43e4
10 changed files with 275 additions and 34 deletions
|
@ -5,6 +5,7 @@ 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 extname = require('path-complete-extname');
|
||||
const { env, settings, themes, output } = require('./configuration');
|
||||
const rules = require('./rules');
|
||||
|
@ -84,6 +85,10 @@ module.exports = {
|
|||
writeToDisk: true,
|
||||
publicPath: true,
|
||||
}),
|
||||
new CopyPlugin([
|
||||
{ from: 'node_modules/tesseract.js/dist/worker.min.js', to: 'ocr' },
|
||||
{ from: 'node_modules/tesseract.js-core/tesseract-core.wasm.js', to: 'ocr' },
|
||||
]),
|
||||
],
|
||||
|
||||
resolve: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue