aboutsummaryrefslogtreecommitdiff
path: root/apps/website
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website')
-rw-r--r--apps/website/astro.config.ts4
-rw-r--r--apps/website/package.json16
-rw-r--r--apps/website/public/robots.txt4
-rw-r--r--apps/website/src/env.d.ts1
-rw-r--r--apps/website/tsconfig.json3
5 files changed, 28 insertions, 0 deletions
diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts
new file mode 100644
index 0000000..882e651
--- /dev/null
+++ b/apps/website/astro.config.ts
@@ -0,0 +1,4 @@
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({});
diff --git a/apps/website/package.json b/apps/website/package.json
new file mode 100644
index 0000000..eab7226
--- /dev/null
+++ b/apps/website/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@polyfrost/website",
+ "private": true,
+ "scripts": {
+ "dev": "astro dev",
+ "start": "astro start",
+ "build": "astro build",
+ "preview": "astro preview"
+ },
+ "dependencies": {
+ "astro": "^2.10.12"
+ },
+ "devDependencies": {
+ "typescript": "^5.1.6"
+ }
+}
diff --git a/apps/website/public/robots.txt b/apps/website/public/robots.txt
new file mode 100644
index 0000000..f58dbcb
--- /dev/null
+++ b/apps/website/public/robots.txt
@@ -0,0 +1,4 @@
+# Example: Allow all bots to scan and index your site.
+# Full syntax: https://developers.google.com/search/docs/advanced/robots/create-robots-txt
+User-agent: *
+Allow: /
diff --git a/apps/website/src/env.d.ts b/apps/website/src/env.d.ts
new file mode 100644
index 0000000..f964fe0
--- /dev/null
+++ b/apps/website/src/env.d.ts
@@ -0,0 +1 @@
+/// <reference types="astro/client" />
diff --git a/apps/website/tsconfig.json b/apps/website/tsconfig.json
new file mode 100644
index 0000000..5378929
--- /dev/null
+++ b/apps/website/tsconfig.json
@@ -0,0 +1,3 @@
+{
+ "extends": "astro/tsconfigs/base"
+}