al-quran.reflectslight.io/nanoc/rules/redirect.rules

18 lines
363 B
Text
Raw Normal View History

2023-03-10 09:49:48 +01:00
#!/usr/bin/env ruby
2023-03-11 18:31:44 +01:00
# frozen_string_literal: true
2023-03-10 14:51:34 +01:00
##
2024-03-16 09:35:58 +01:00
# Rules for a redirect from the root path to the surah index
# for a given locale (eg / -> /en/).
2023-03-10 09:49:48 +01:00
compile "/html/redirect.html.erb" do
filter(:tidy)
2023-03-10 09:49:48 +01:00
filter(:erb)
write("/index.html")
end
2024-03-16 09:35:58 +01:00
compile "/js/main/redirect.ts" do
2024-03-16 15:13:27 +01:00
filter(:webpack, depend_on: ["/js/lib/"])
2024-03-16 09:35:58 +01:00
write("/js/main/redirect.js")
2023-03-10 09:49:48 +01:00
end