Tiago Souto
Results
2
comments of
Tiago Souto
> > I found the solution to this on Nextjs, user the following > > ``` > > /** @type {import('next').NextConfig} */ > > const nextConfig = { > >...
I could get it to work by updating my docker files as the following: docker-compose: ``` chat: container_name: chat build: context: . environment: OPENAI_API_KEY: ${OPENAI_API_KEY} ports: - 3333:3333 working_dir: /chat...