Skip to content

Commit 3981e81

Browse files
committed
docs(readme): update readme contact
1 parent b52e508 commit 3981e81

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ The documentation is still in progress, but you can feel free to create a new is
1616

1717
For more information, please track the progress in [#4](https://github.com/DevCloudFE/matechat-react/issues/4) and [#5](https://github.com/DevCloudFE/MateChat/issues/5).
1818

19+
## Contact Us
20+
21+
| MateChat React Chat Group | SOA Chat Group |
22+
| :------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------: |
23+
| [<img alt="MateChat React Chat Group" src="./assets/matechat-react-qq-group.jpg" />](https://qm.qq.com/q/aMLehEXzBm) | [<img alt="SOAt Chat Group" src="./assets/soa-qq-group.jpg" />](https://qm.qq.com/q/lOocKriX74) |
24+
1925
## License
2026

2127
This project is licensed under the [MIT License](./LICENSE).

assets/matechat-react-qq-group.jpg

482 KB
Loading

assets/soa-qq-group.jpg

535 KB
Loading

vite.config.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@ export default defineConfig({
3636
);
3737
return path.join("modules", relativePath);
3838
}
39+
// Rolldown cannot handle non-posix paths, so we handle manually
3940
if (info.facadeModuleId?.includes("src")) {
4041
const idx = info.facadeModuleId.lastIndexOf("src");
41-
const relativeDir = path.dirname(info.facadeModuleId.slice(
42-
idx + "src/".length,
43-
));
44-
return path.join(relativeDir, `${info.name}.js`)
42+
const relativeDir = path.dirname(
43+
info.facadeModuleId.slice(idx + "src/".length),
44+
);
45+
return path.join(relativeDir, `${info.name}.js`);
4546
}
4647
return "[name].js";
4748
},

0 commit comments

Comments
 (0)