Skip to content

Commit 36a8b56

Browse files
committed
udpate README, enable Overmind Devtools debugger
1 parent a1a51b1 commit 36a8b56

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ See [Configuring quasar.conf.js](https://v2.quasar.dev/quasar-cli/quasar-conf-js
3838

3939
Overmind DevTools: <https://overmindjs.org/core/devtools>
4040

41+
As standalone Electron app:
42+
4143
```
4244
npx overmind-devtools@latest
4345
```
46+
47+
or [Overmind Devtools VSCode](https://marketplace.visualstudio.com/items?itemName=christianalfoni.overmind-devtools-vscode) extension

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quasar2-overmind",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "A Quasar Framework app",
55
"productName": "Quasar App",
66
"author": "Jaroslaw Zabiello <[email protected]>",

src/boot/overmind.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ import { createOvermind } from 'overmind';
44

55
// more info on params: https://quasar.dev/quasar-cli/boot-files
66
export default boot(({ app }) => {
7-
const overmind = createOvermind(config);
7+
const overmind = createOvermind(config, { devtools: true });
88
app.provide('overmind', overmind);
99
});

0 commit comments

Comments
 (0)