chore: publish link to chat rooms

This commit is contained in:
Ayo 2024-01-11 23:26:06 +01:00
parent cd4b341a5f
commit 1694511af8
2 changed files with 13 additions and 3 deletions

View file

@ -22,6 +22,8 @@ Run the following to generate a McFly starter project.
```
npm create mcfly@latest
```
## Join Us!
Need help? Wanna hangout? Everyone is welcome to join our public [McFly chat rooms](https://mcfly.js.org/chat)... or just read through the [Discussion channel](https://app.element.io/#/room/!ClBXAeIoOzdniMUUue:matrix.org) without event without an account!
## Features
The time has come for vanilla Web tech. 🎉

View file

@ -1,10 +1,18 @@
export default defineNitroConfig({
extends: '@mcflyjs/config',
extends: "@mcflyjs/config",
devServer: {
watch: ["../packages"],
watch: ["../packages"],
},
routeRules: {
"/chat": {
redirect: {
to: "https://matrix.to/#/#mcfly:matrix.org",
statusCode: 302,
},
},
},
compressPublicAssets: {
gzip: true,
brotli: true,
}
},
});