mirror of
https://github.com/shadoll/sLogos.git
synced 2026-08-28 11:33:29 +00:00
feat: Implement collection support for logos and flags in the gallery
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// This file lists all supported collections for the gallery
|
||||
export const collections = [
|
||||
{
|
||||
name: 'logos',
|
||||
label: 'Logos',
|
||||
baseDir: 'logos',
|
||||
genDir: 'logos_gen',
|
||||
dataFile: 'data/logos.json'
|
||||
},
|
||||
{
|
||||
name: 'flags',
|
||||
label: 'Flags',
|
||||
baseDir: 'flags',
|
||||
genDir: 'flags_gen',
|
||||
dataFile: 'data/flags.json'
|
||||
}
|
||||
];
|
||||
if (typeof module !== 'undefined' && module.exports) {
|
||||
module.exports = { collections };
|
||||
}
|
||||
Reference in New Issue
Block a user