import { defineCollection, z } from 'astro:content';
export const collections = {
work: defineCollection({
type: 'content',
schema: z.object({
title: z.string(),
description: z.string(),
publishDate: z.coerce.date(),
tags: z.array(z.string()),
img: z.string(),
img_alt: z.string().optional(),
}),
}),
};
s/docs/public/make-scrollable-code-focusable.js?h=@astrojs/cloudflare@0.2.0' type='application/atom+xml'/>
Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
* Inline hydration scripts
* Adds a changeset
* Update directiveAstroKeys type
|
|
|
|
|
|
* Adding support for base64 encoded responses in Netlify Functions
* chore: add changeset
* removing the regex check for a more simple header-based check
* nit: cleaning up the readme a bit
|
|
- Fix the tree to reflect the actual example contents
- Remove RSS and Sitemap bullet points, since they aren't in the project
|
|
|
|
|
|
* Remove redundant hydration scripts
* Prebuild the island JS
* Fix build
* Updates to tests
* Update more references
* Custom element test now has two classic scripts
* Account for non-default exports
* Restructure hydration directives
* Move nested logic into the island component
* Remove try/catch
|
|
|
|
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
|
|
|
* chore: add project meta
* Update index.ts
|
|
|
|
* Handle importing multiple CSS packages in same bundle
* Changeset
|