Nick Wittwer

Results 25 comments of Nick Wittwer

@dasmikko That would be awesome! Even some simple documentation would be fine to start, like how to install it, how to set it up in another Vue app, and basic...

No worries, totally understand. If I get some time I'll try to create a example of how the TypeScript version could look. I was also quite hesitant about TS a...

After quite some time looking for a solution to this on my own project, I realized that the `webpack-dev-server` package actually has a built-in option for HMR (hot module reloading),...

@Gugwai Glad it worked! As a heads up, this is a slippery slope to find a workaround until there's an official fix. Here's what I found to fix the issue...

Running into the same effect. Versions: nuxt: 2.15.7 @nuxtjs/axios: 5.13.6 @nuxtjs/composition-api: 0.24.6 vuex: 3.6.2 **Use case:** In my particular case I'm using the [`useStore`](https://composition-api.nuxtjs.org/packages/store#usestore) function from @nuxtjs/composition-api to trigger a...

@lawrence615 Haven't tried in a while, but after briefly looking again in this repo, it looks like it still emits `event.target`, so I _assume_ it still would not solve this....

Seeing this as well inside a Yarn Workspace. OS: Windows, Yarn v1.22.5, Node v14.15.3. ```bash error C:\Users\hi\Documents\...\node_modules\@myapp\app: Command failed. Exit code: 1 Command: electron-builder install-app-deps Arguments: Directory: C:\Users\hi\Documents\...\node_modules\@myapp\app Output: internal/modules/cjs/loader.js:883...

A workaround I found is: 1. Install a Gulp plugin which will change the extension of all your files: `npm install gulp-ext-replace --save-dev` ([NPM link](https://www.npmjs.com/package/gulp-ext-replace)) 2. Add it to the...

@michalzaq12 What if there was a CLI solution for `electron-nuxt`, similar to [Storybook's CLI](https://github.com/storybookjs/storybook/tree/master/lib/cli) `sb init` command? They also use a similar structure, with `.storybook/` containing the library files, and...

@michalzaq12 I've just created a basic example of Electron + Nuxt 3 (Vue 3) here: https://github.com/nwittwer/nuxt-3-vite-electron-typescript. Definitely it is not as robust as this fantastic project was for Nuxt 2,...