mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 16:38:23 +00:00
* llms.txt/llms-full.txt/.md docs routes, SSR * Fixes! * Tests! * More fixes * Fix SSR! * Update bin/docker-entrypoint Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Use Bun for SSR! --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
10 lines
354 B
Ruby
10 lines
354 B
Ruby
# frozen_string_literal: true
|
|
|
|
InertiaRails.configure do |config|
|
|
config.version = ViteRuby.digest
|
|
config.encrypt_history = Rails.env.production?
|
|
config.always_include_errors_hash = true
|
|
config.use_script_element_for_initial_page = true
|
|
config.use_data_inertia_head_attribute = true
|
|
config.ssr_enabled = ViteRuby.config.ssr_build_enabled
|
|
end
|