Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PUBLIC_RELAY_SCHEME="http"
PUBLIC_RELAY_HOST="localhost:4443"
PUBLIC_RELAY_URL="http://localhost:4443"
PUBLIC_RELAY_TOKEN=""
5 changes: 3 additions & 2 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
PUBLIC_RELAY_SCHEME="https"
PUBLIC_RELAY_HOST="relay.quic.video"
PUBLIC_RELAY_URL="https://relay.quic.video"
# Generate with: cargo run --bin moq-token -- --key root.jwk sign --root "demo" --publish ""
PUBLIC_RELAY_TOKEN="eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJyb290IjoiZGVtbyIsInB1YiI6IiIsInN1YiI6bnVsbCwiZXhwIjpudWxsLCJpYXQiOm51bGx9.vizGIT2tLZLnYWkov6XHrzwt5YoKpi0jS9oIskXxhqA"
3 changes: 0 additions & 3 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import solidJs from "@astrojs/solid-js";
import tailwind from "@astrojs/tailwind";
import { defineConfig } from "astro/config";

import mkcert from "vite-plugin-mkcert";

// https://astro.build/config
export default defineConfig({
site: "https://quic.video",
Expand Down Expand Up @@ -37,7 +35,6 @@ export default defineConfig({
],
},
},
plugins: [mkcert()],
resolve: {
alias: {
"@": "/src",
Expand Down
4 changes: 2 additions & 2 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/// <reference types="astro/client" />

interface ImportMetaEnv {
readonly PUBLIC_RELAY_SCHEME: "http" | "https";
readonly PUBLIC_RELAY_HOST: string;
readonly PUBLIC_RELAY_URL: string;
readonly PUBLIC_RELAY_TOKEN: string;
}

interface ImportMeta {
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,14 @@
"@astrojs/rss": "^4.0.12",
"@astrojs/solid-js": "5.1.0",
"@astrojs/tailwind": "6.0.2",
"@kixelated/hang": "^0.2.5",
"@kixelated/hang": "^0.3.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"astro": "^5.8.2",
"solid-js": "^1.9.7",
"tailwindcss": "^3.4.17",
"unique-names-generator": "^4.7.1",
"vite-plugin-mkcert": "^1.17.8",
"vite-plugin-static-copy": "^2.3.1",
"vite-plugin-wasm": "^3.4.1"
"vite-plugin-static-copy": "^2.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
Expand Down
Loading