Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vandsonfalcao/vlibras-nextjs

VLibras para Nextjs
https://github.com/vandsonfalcao/vlibras-nextjs

acessibilidade acessibilidade-em-sites acessibility acessibility-tools javascript next nextjs react reactjs typescript

Last synced: 18 days ago
JSON representation

VLibras para Nextjs

Awesome Lists containing this project

README

        

# vlibras-nextjs

Componente React para implatação do plugin VLibras em aplicações Nextjs.

## Instalação

```sh
npm i vlibras-nextjs
ou
yarn add vlibras-nextjs
```
## Como usar

Aplicações React
>app.js

Reprodução: vlibras-nextjs-on-react-example
repositorio github

```js
import VLibras from 'vlibras-nextjs';

function App() {
return (




);
}

export default App;
```

Aplicações Next
>index.tsx

Reprodução: vlibras-nextjs-example
repositorio github
repositorio next15 github

```ts
import type { NextPage } from "next";
import VLibras from "vlibras-nextjs";

const Home: NextPage = () => {
return (


{/* only worked in production in tests with nextjs applications maybe you can solve this! */}
{process.env.NODE_ENV === "production" && }

);
};

export default Home;
```

## Obrigado aos colaboradores!!!