A Nuxt 3 web application for publishing and managing NFT books on the blockchain, serving users at publish.3ook.com.
Look at the Nuxt 3 documentation to learn more.
For AI agent guidance, see AGENTS.md (also symlinked as CLAUDE.md).
Make sure to install the dependencies:
yarn installStart the development server on http://localhost:3000:
yarn devRun in production config:
yarn dev:productionImportant: Build and generate commands require extra memory:
export NODE_OPTIONS=--max_old_space_size=8192Build the application for production:
NODE_OPTIONS=--max_old_space_size=8192 yarn build:productionLocally preview production build:
yarn previewBuild the application for static site hosting:
NODE_OPTIONS=--max_old_space_size=8192 yarn generate:productionCheck out the deployment documentation for more information.