mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
10 lines
288 B
Ruby
10 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
Grover.configure do |config|
|
|
config.options = {
|
|
cache: false,
|
|
executable_path: ENV['CHROMIUM_PATH'] || '/usr/bin/chromium',
|
|
launch_args: %w(--disable-dev-shm-usage --disable-gpu --no-sandbox),
|
|
timeout: Constants::GROVER_TIMEOUT_MS
|
|
}
|
|
end
|