2023-03-10 09:49:48 +01:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
##
|
2023-03-10 12:16:41 +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/pages/surah/redirect.html.erb" do
|
|
|
|
filter(:erb)
|
|
|
|
write("/index.html")
|
|
|
|
end
|
|
|
|
|
|
|
|
compile "/js/pages/surah/redirect.ts" do
|
|
|
|
filter(:webpack)
|
|
|
|
write("/js/pages/surah/redirect.js")
|
|
|
|
end
|