daniel sieradski

Results 67 comments of daniel sieradski

``` nexe src/index.js --output=bin/2famsg --targets=macos-12.4.0 --verbose --build true --mangle false --configure=--openssl-no-asm; codesign -s "3rd Party Mac Developer Application" bin/2famsg ``` My binary comes out fine using the above. No compilation...

Never mind I just saw the TypeScript instructions

Wait no, even after adding the correct typings... ```ts type Events = { closeMailer: undefined } const eventBus: Emittery = new Emittery({ debug: { name: 'eventBus', enabled: process.env.ENVIRONMENT !== 'production',...

Wonder if this is a Nuxt issue, not an vue-i18n issue itself, per se, that the Nuxt team should look at

Nuxt apparently has [its own i18n module](https://github.com/nuxt-community/i18n-module) so maybe we should all be using that instead?

Ok, I just discovered that, once pushed to Vercel, no async data being fed into `nuxt.config.js` is working at all and that the issue is not limited to the sitemap.

Switched from Axios to Ky and it's the same deal.

Ok, I did something crazy: I created an initializer script that fetches my config from my API, appends it to `process.env` and then spawns `nuxt` in a child process. Again:...

So there are a couple of things I noticed as I continued troubleshooting this yesterday: The first is that `@nuxtjs/sitemaps` only works as server middleware when running in dev mode...