chore: publish link to chat rooms
This commit is contained in:
parent
cd4b341a5f
commit
1694511af8
2 changed files with 13 additions and 3 deletions
|
@ -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. 🎉
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
export default defineNitroConfig({
|
||||
extends: '@mcflyjs/config',
|
||||
extends: "@mcflyjs/config",
|
||||
devServer: {
|
||||
watch: ["../packages"],
|
||||
},
|
||||
routeRules: {
|
||||
"/chat": {
|
||||
redirect: {
|
||||
to: "https://matrix.to/#/#mcfly:matrix.org",
|
||||
statusCode: 302,
|
||||
},
|
||||
},
|
||||
},
|
||||
compressPublicAssets: {
|
||||
gzip: true,
|
||||
brotli: true,
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue