From f6621c937e4d0d5aafb1adf87eb55a290d70fd09 Mon Sep 17 00:00:00 2001 From: Korbs Date: Wed, 18 Dec 2024 17:49:57 -0500 Subject: [PATCH] :rocket: Generate --- .gitignore | 3 + astro.config.mjs | 10 ++ generic.html | 352 ----------------------------------------------- package.json | 14 ++ tsconfig.json | 5 + 5 files changed, 32 insertions(+), 352 deletions(-) create mode 100644 .gitignore create mode 100644 astro.config.mjs delete mode 100644 generic.html create mode 100644 package.json create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e73ad25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules +.astro +bun.lockb \ No newline at end of file diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..3a8d4fc --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,10 @@ +// @ts-check +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +export default defineConfig({ + build: { + "format": "file" + }, + "compressHTML": true, +}); diff --git a/generic.html b/generic.html deleted file mode 100644 index 32b5bc7..0000000 --- a/generic.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - -
- ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  -
- - - - - - -
- - diff --git a/package.json b/package.json new file mode 100644 index 0000000..16498ec --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "email-templaets", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "astro": "^5.0.9" + } +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8bf91d3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] +}