You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
647 B
22 lines
647 B
# frozen_string_literal: true |
|
|
|
def render_static_page(action, dest:, **opts) |
|
html = ApplicationController.render(action, opts) |
|
File.write(dest, html) |
|
end |
|
|
|
namespace :assets do |
|
desc 'Generate static pages' |
|
task generate_static_pages: :environment do |
|
render_static_page 'errors/500', layout: 'error', dest: Rails.public_path.join('assets', '500.html') |
|
end |
|
end |
|
|
|
if Rake::Task.task_defined?('assets:precompile') |
|
Rake::Task['assets:precompile'].enhance do |
|
Rake::Task['assets:generate_static_pages'].invoke |
|
end |
|
end |
|
|
|
# We don't want vite_ruby to run yarn, we do that in a separate step |
|
Rake::Task['vite:install_dependencies'].clear
|
|
|