UNPKG

@qwik.dev/core

Version:

An open source framework for building instant loading web apps at any scale, without the extra effort.

34 lines (33 loc) 847 B
{ "description": "Fastify server", "scripts": { "build.server": "vite build -c adapters/fastify/vite.config.mts", "serve": "node server/entry.fastify" }, "dependencies": { "@fastify/compress": "^6.2.1", "@fastify/static": "^6.10.1", "fastify": "^4.17.0", "fastify-plugin": "^4.5.0" }, "devDependencies": { "dotenv": "^16.3.2" }, "__qwik__": { "priority": 20, "displayName": "Adapter: Node.js Fastify Server", "docs": [ "https://qwik.dev/integrations/deployments/node/", "https://fastify.dev/" ], "nextSteps": { "title": "Next Steps", "lines": [ "Now you can build a production-ready Fastify app:", "", "- pnpm run build: production build for Fastify", "- pnpm run serve: runs the production server locally" ] } } }