Skip to content

Commit

Permalink
Add Astro sandboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
clmay committed Apr 20, 2024
1 parent fdfdf9f commit 0a0cc11
Show file tree
Hide file tree
Showing 26 changed files with 14,434 additions and 0 deletions.
24 changes: 24 additions & 0 deletions astro/astro-sandbox/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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

# jetbrains setting folder
.idea/
4 changes: 4 additions & 0 deletions astro/astro-sandbox/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 4,
"useTabs": true
}
3 changes: 3 additions & 0 deletions astro/astro-sandbox/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["astro-build.astro-vscode"]
}
11 changes: 11 additions & 0 deletions astro/astro-sandbox/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.1.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
9 changes: 9 additions & 0 deletions astro/astro-sandbox/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from "astro/config";

import svelte from "@astrojs/svelte";
import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
integrations: [svelte(), tailwind()],
});
Loading

0 comments on commit 0a0cc11

Please sign in to comment.