This is a template for creating applications using Next.js 13 (app directory) and NextUI (v2).
To create a new project based on this template using create-next-app
, run the following command:
npx create-next-app -e https://github.com/nextui-org/next-app-template
npm install
npm run dev
Licensed under the MIT license.
x-forwarded-host
header with value localhost:3001
does not match origin
header with value imev:3001
from a forwarded Server Actions request. Aborting the action.
serverActions: { allowedOrigins: ["xxxx.com", "localhost:3001"], }
localhost:3001/auth/login http://zooprocess.imev-mer.fr:3001/auth/login
[email protected] seb1234
docker build -t zooprocessv10-docker .
FROM node:18
WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 3000 CMD npm run dev
docker build -t zooprocess-front . docker run -p 3000:3001 zooprocess-front