fix: anchor links

fixes https://github.com/tidalcycles/strudel/issues/432
+ fix style regression in mini repl
This commit is contained in:
Felix Roos 2023-02-13 00:35:40 +01:00
parent 12eb361d69
commit 64ad75c79e
6 changed files with 104 additions and 95 deletions

View file

@ -20,11 +20,8 @@ Example: <https://felixroos.github.io/strudel/swatch/>
### 6. edit `website/astro.config.mjs` to use site: `https://<your-username>.github.io` and base `/strudel`, like this
```js
export default defineConfig({
/* ... rest of config ... */
site: 'https://<your-username>.github.io',
base: '/strudel',
});
const site = 'https://<your-username>.github.io';
const base = '/strudel';
```
### 7. commit & push the changes