m0rniac / reactjs-inmemo

'In-Memory' is a platform that hosts interactive games that stimulate human neuronal activity, primarily aimed at patients with Alzheimer's disease.

Home Page:https://reactjs-inmemo.vercel.app/games/memorycards

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

In-Memory maded with ReactJS (NextJS).

'In-Memory' is a platform that hosts interactive games that stimulate human neuronal activity, primarily aimed at patients with Alzheimer's disease.

Deployment

  • Clone repository:
git clone https://github.com/m0rniac/reactjs-inmemo
cd reactjs-inmemo/
  • Install dependencies:
npm install
  • Run:
npm run dev

or

  • Build:
npm run build

About 'BUILD'

The project uses the 13.4.4 version of NextJS, which in production generates the .next folder by default (without index.html file).

In some cases it could complicate the deploy, to change the build mode and generate a Static Project (with index.html file) you must uncheck "output: 'export'" in the next.config.js file like so:

const nextConfig = {
    output: 'export',
    images: {
        unoptimized: true,
    },
}

This will create an out folder with the file "index.html" just like a ReactJS build. It should be mentioned that in some cases this modification could affect some functionalities of the project

More info:

Feedback

If you have any feedback, please reach out to me at:

instagram

portfolio

About

'In-Memory' is a platform that hosts interactive games that stimulate human neuronal activity, primarily aimed at patients with Alzheimer's disease.

https://reactjs-inmemo.vercel.app/games/memorycards

License:MIT License


Languages

Language:JavaScript 50.0%Language:SCSS 31.4%Language:CSS 18.6%