propers: octave readings for All Saints; fix PWA precache limit
Deploy / deploy (push) Successful in 46s
Deploy / deploy (push) Successful in 46s
All Saints: all 7 days (2-8) have real content -- a continuous reading
from the book of Ezechiel read straight through the whole octave,
confirmed via each day's own distinctive Invitatory antiphon, present
even on Nov 2 (so this app's own All Souls' Day exclusion doesn't
conflict with anything here). Also fixes two more recurring "dropped
space after capital I" source typos ("Iwill" -> "I will") found by
grepping the accumulated readings so far, retroactively correcting
St. Lawrence's day 8 and the Assumption's day 6.
vite.config.ts: raises workbox's maximumFileSizeToCacheInBytes -- the
growing body of eagerly-bundled octave-reading text (by design, for
offline use) pushed the main chunk past the default 2 MiB precache cap,
which was failing the production build.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -33,6 +33,11 @@ export default defineConfig({
|
||||
// Precache everything the shell needs so a day's office renders
|
||||
// fully offline once visited once.
|
||||
globPatterns: ['**/*.{js,css,html,ico,png,svg,woff2}'],
|
||||
// Default cap (2 MiB) is too small once the sanctoral pull's real
|
||||
// propers/octave-reading text (all eagerly bundled, by design, for
|
||||
// offline use) pushes the main chunk past it -- raised with
|
||||
// headroom for the octaves still being transcribed.
|
||||
maximumFileSizeToCacheInBytes: 6 * 1024 * 1024,
|
||||
},
|
||||
}),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user