https://atcampussmidig.herokuapp.com/
A component library using the atcampus styleguide
- Make sure you install a recent Node.js version (Tested with v16.13.1)
- Run
npm install
- Run the project with
npm run dev
- Access the site at http://localhost:9001
- Next.js with React, is used for all our frontend projects.
- TailwindCSS used for almost all our CSS styling.
If you're having this error, disable swc by doing any of the following lines:
- Open
next.config.js
and addswcMinify: false
. - Or you can add the following text to
.babelrc
:
{
"presets": ["next/babel"]
}