mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 05:48:07 +01:00
9a8be8cf49
Remove the `fallback` property and do not fallback to using another flavour when a pack is not available in the selected flavour. Flavours should define all packs, and should they wish to piggy-back on another one, they can import that other one's pack explicitly instead.
53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
# (REQUIRED) The location of the pack files.
|
|
pack:
|
|
admin:
|
|
- admin.tsx
|
|
- public.tsx
|
|
auth:
|
|
- public.tsx
|
|
- two_factor_authentication.js
|
|
common:
|
|
filename: common.js
|
|
stylesheet: true
|
|
error: error.js
|
|
home:
|
|
filename: home.js
|
|
preload:
|
|
- flavours/glitch/async/compose
|
|
- flavours/glitch/async/home_timeline
|
|
- flavours/glitch/async/notifications
|
|
inert:
|
|
filename: inert.js
|
|
stylesheet: true
|
|
mailer:
|
|
filename: mailer.js
|
|
stylesheet: true
|
|
public: public.tsx
|
|
settings: public.tsx
|
|
sign_up: sign_up.js
|
|
share: share.jsx
|
|
remote_interaction_helper: remote_interaction_helper.ts
|
|
|
|
# (OPTIONAL) The directory which contains localization files for
|
|
# the flavour, relative to this directory. The contents of this
|
|
# directory must be `.json` files whose names correspond to
|
|
# language tags and whose default exports are a messages object.
|
|
locales: locales
|
|
|
|
# (OPTIONAL) Which flavour to inherit locales from
|
|
inherit_locales: vanilla
|
|
|
|
# (OPTIONAL) A file to use as the preview screenshot for the flavour,
|
|
# or an array thereof. These are the full path from `app/javascript/`.
|
|
screenshot: flavours/glitch/images/glitch-preview.png
|
|
|
|
# (OPTIONAL) The directory which contains the pack files.
|
|
# Defaults to this directory (`app/javascript/flavour/[flavour]`),
|
|
# but in the case of the vanilla Mastodon flavour the pack files are
|
|
# somewhere else.
|
|
pack_directory: app/javascript/flavours/glitch/packs
|
|
# (OPTIONAL) The directory which contains the pack files.
|
|
# Defaults to the theme directory (`app/javascript/themes/[theme]`),
|
|
# which should be sufficient for like 99% of use-cases lol.
|
|
|
|
# pack_directory: app/javascript/packs
|