Simple site to calculate the engagement rate for an artwork on Pixiv.
If you'd like to run the calculator locally:
- Download the repo by clicking Code -> Download Zip
- Unzip the folder and then using your IDE of choice (i.e. VSCode), open the folder
- Run the following command
npm install
- Replace the code inside of next.config.js with the following:
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true
}
module.exports = nextConfig
- Then run the following command:
npm run dev
The site should now be accessible from localhost:3000