Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexagon committed Oct 17, 2024
1 parent 9f5cfef commit 446a5d6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,14 @@ myApp().catch(console.error);

### Build with Vite

Using [Vite](https://vitejs.dev) you will stuck with [issue](https://github.com/vitejs/vite/issues/8427). As a workaround, add `nekoton-wasm-vite` plugin to your `vite.config.ts`.
Using [Vite](https://vitejs.dev) you might stuck with this [issue](https://github.com/vitejs/vite/issues/8427). As a workaround, you can try this:

Install the dev-server plugin:
```bash
npm install --save-dev nekoton-wasm-vite
```

And add it to the `vite.config.ts`:
```js
import { defineConfig } from 'vite'
import { nekotonWasmVite } from 'nekoton-wasm-vite'
Expand All @@ -106,8 +112,7 @@ export default defineConfig({
// ...
],
// ...
})

});
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everscale-standalone-client",
"version": "2.1.26",
"version": "2.1.27",
"repository": "https://github.com/broxus/everscale-standalone-client",
"scripts": {
"build": "tsc",
Expand Down

0 comments on commit 446a5d6

Please sign in to comment.