https://github.com/daftmaple/stream-utils
TTS, Last.fm, Chatbox overlay. All in one
https://github.com/daftmaple/stream-utils
Last synced: about 2 months ago
JSON representation
TTS, Last.fm, Chatbox overlay. All in one
- Host: GitHub
- URL: https://github.com/daftmaple/stream-utils
- Owner: daftmaple
- Created: 2023-12-11T02:17:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-17T12:04:04.000Z (over 1 year ago)
- Last Synced: 2025-02-07T09:29:11.686Z (3 months ago)
- Language: TypeScript
- Homepage: https://daftmaple-stream-utils.vercel.app/
- Size: 200 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.docs.md
Awesome Lists containing this project
README
# React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level `parserOptions` property like this:
```js
export default {
// other rules...
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json", "./tsconfig.node.json"],
tsconfigRootDir: __dirname,
},
};
```- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list# Vercel
Builds are ignored unless master branch based on the configuration on `vercel-build.sh`. If you are running this on your own, make sure `Ignored Build Step` is configured (under `Git`):

`react-router` doesn't work well with rewrites, hence the config below is added on `vercel.json`
```json
{
"routes": [
{
"src": "/[^.]+",
"dest": "/",
"status": 200
}
]
}
```