UNPKG

@builder.io/qwik

Version:

An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.

34 lines (33 loc) 846 B
{ "description": "Fastify server", "scripts": { "build.server": "vite build -c adapters/fastify/vite.config.ts", "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" ] } } }