just-another-http-api 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/api.js +1 -0
  2. package/package.json +1 -1
package/api.js CHANGED
@@ -25,6 +25,7 @@ async function createServer ( config ) {
25
25
  const app = fastify ( {
26
26
  logger: config.logs || false,
27
27
  name: config.name || packageJson.name,
28
+ ...( config?.fastify || {} )
28
29
  } );
29
30
 
30
31
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "just-another-http-api",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "A framework built on top of fastify aimed at removing the need for any network or server configuration. ",
5
5
  "homepage": "https://github.com/OllieEdge/just-another-http-api#readme",
6
6
  "repository": {