This is a Next.js project bootstrapped with create-next-app
.
Install hundreds of unnecessary dependencies using this neatly concise command:
npm install
Then, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
.
├── components # React components
│ ├── input_formula # The text input accepting statements
│ ├── karnaugh_map # Tables, SVG drawing, DNF highlighting
│ └── presentation # Slide component, arrow controls
├── pages # SSG
├── presentation # Powerpoint directory
│ └── slides # Actual slide components
├── project # Actual project algorithms w/ tests
│ └── dnf
│ └── rectangle_fixtures # test cases
└── public # favicons, images, etc.
GitHub has a prefix URL /karnaugh
which has to be taken into account
when changing the URL and linking static files. This is automatically assumed
unless the ASSET_PREFIX
environment variable is overwritten.
To see GitHub's output:
npm run export
To see Netlify's output:
ASSET_PREFIX="" KARNAUGH_PATH="" npm run export
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.