Skip to content

Commit

Permalink
Deploy to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
deluksic committed Jan 11, 2025
1 parent a754804 commit 6b863ed
Show file tree
Hide file tree
Showing 6 changed files with 115 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

A simple art app where you click to create circles. The longer you hold, the larger the circle gets. Circles collide and stop growing if they run out of space. You can zoom in (a lot).

Checkout the [LIVE DEMO](https://deluksic.github.io/apollonian-circles/)!

# Why

Developed as a technical challenge, to learn math and WebGPU.
Binary file added docs/assets/favicon-mtvwWgEY.ico
Binary file not shown.
1 change: 1 addition & 0 deletions docs/assets/index-B4HUgb0J.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 92 additions & 0 deletions docs/assets/index-jgfTJMVF.js

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" type="image/ico" href="./assets/favicon-mtvwWgEY.ico" />
<title>Solid App</title>
<script type="module" crossorigin src="./assets/index-jgfTJMVF.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-B4HUgb0J.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

</body>
</html>
3 changes: 3 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ export default defineConfig({
server: {
port: 3000,
},
// necessary for github pages to work
base: './',
build: {
target: 'esnext',
outDir: 'docs',
},
})

0 comments on commit 6b863ed

Please sign in to comment.