mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 23:21:30 +08:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
Grover.configure do |config|
|
|
config.options = {
|
|
cache: false,
|
|
executable_path: './bin/chromium',
|
|
launch_args: ['--no-sandbox'],
|
|
timeout: Constants::GROVER_TIMEOUT_MS
|
|
}
|
|
end
|