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
|
@ -20,11 +20,11 @@ Rails.application.config.content_security_policy do |p|
|
|||
if Rails.env.development?
|
||||
webpacker_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{Webpacker.dev_server.host_with_port}" }
|
||||
|
||||
p.connect_src :self, :blob, assets_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
|
||||
p.script_src :self, :unsafe_inline, :unsafe_eval, assets_host
|
||||
p.connect_src :self, :data, :blob, assets_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
|
||||
p.script_src :self, :blob, :unsafe_inline, :unsafe_eval, assets_host
|
||||
else
|
||||
p.connect_src :self, :blob, assets_host, Rails.configuration.x.streaming_api_base_url
|
||||
p.script_src :self, assets_host
|
||||
p.connect_src :self, :data, :blob, assets_host, Rails.configuration.x.streaming_api_base_url
|
||||
p.script_src :self, :blob, assets_host
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -56,5 +56,6 @@ module.exports = merge(sharedConfig, {
|
|||
settings.dev_server.watch_options,
|
||||
watchOptions
|
||||
),
|
||||
writeToDisk: filePath => /ocr/.test(filePath),
|
||||
},
|
||||
});
|
||||
|
|
|
@ -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