now-updater/config.js

8 lines
282 B
JavaScript
Raw Normal View History

import { services } from './services.js'
2025-12-18 01:57:14 +00:00
// set to 'html' for HTML links or 'markdown' for markdown links
export const linkFormat = 'html'
// filter to only active services - edit services.js to toggle isActive or customise
export const items = services.filter((s) => s.isActive)