From 9ddf91bc14e94b45aa01161f9d641780d19ebbf7 Mon Sep 17 00:00:00 2001 From: Kieran Kim-Murphy Date: Sun, 24 Aug 2025 20:12:03 -0700 Subject: [PATCH] fix: fix weird sources directory structure --- index.html | 2 ++ public/CNAME | 2 +- vite.config.js | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c9dbd31..1d51395 100644 --- a/index.html +++ b/index.html @@ -19,6 +19,8 @@

WebGPU Not Supported

if (!navigator.gpu) { document.getElementById('webgpu-error').style.display = 'block'; document.querySelector('canvas').style.display = 'none'; + } else { + console.log('WebGPU is supported'); } diff --git a/public/CNAME b/public/CNAME index dde3ff7..32246d8 100644 --- a/public/CNAME +++ b/public/CNAME @@ -1 +1 @@ -pro.gramming.party +particles.pro.gramming.party diff --git a/vite.config.js b/vite.config.js index cfe9815..38cfbfd 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,7 +1,7 @@ import { defineConfig } from 'vite' export default defineConfig({ - base: '/5s/particles/2025/', + base: '/', build: { outDir: 'dist', assetsDir: 'assets',