/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
docs/components/CdnImportPlugin.astro
19 строк
356 B
Paweł Kuna
Add quality gates: Prettier for Astro, astro check for shared, unused SCSS variable lint (#2749)
03 авг 2026, 01:47
Не верифицирован
03 авг 2026, 01:47
8962710
Код
Авторство
О чём код?
--- import { Code } from 'astro:components' import { site } from '@shared/lib/site.ts' interface Props { plugins: string[] } const { plugins }: Props = Astro.props --- <Code lang="html" code={plugins .map((plugin) => { return `<link rel="stylesheet" href="${site.cdnUrl}/dist/css/tabler-${plugin}.min.css" />` }) .join('\n')} />