Ondřej Misák

Results 44 comments of Ondřej Misák

I'm currently testing my custom version of the provider, maybe it will help the developers. @pi0 ```bash $ yarn add create-hmac ``` nuxt.config.js ```js export default { // .... image:...

For me solution is (i need to use TypeOrm on server): server/tsconfig.json ```json { "extends": "../.nuxt/tsconfig.server.json", "compilerOptions": { "experimentalDecorators": true, "emitDecoratorMetadata": true } } ``` nuxt.config.ts ```ts import rollupPluginTs from...

The most common occurrence of this error is when using **Nuxt** in **Docker**. A temporary workaround is to add the command `rm -rf /tmp/nitro/worker-*` to the **entrypoint**, before running `pnpm...

I put together a sample Nuxt 3 project repo with Docker support + resolving this bug https://github.com/misaon/nuxt-docker.