Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
test: add test for Astro (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Mar 17, 2024
1 parent d361b13 commit 8f74e26
Show file tree
Hide file tree
Showing 10 changed files with 6,638 additions and 0 deletions.
21 changes: 21 additions & 0 deletions examples/astro/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
4 changes: 4 additions & 0 deletions examples/astro/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({});
Loading

0 comments on commit 8f74e26

Please sign in to comment.