From 3059fb0c71f76d616b1da1e2dc79f11e5fad737d Mon Sep 17 00:00:00 2001 From: Walaff Fernandes <55416536+lncitador@users.noreply.github.com> Date: Fri, 27 Oct 2023 13:15:36 -0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ae6000e..5a1687f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ # Features - Serving of a Remix build through a custom NestJS server implementation. -- Support of using NestJS @Injectable() services as Remix `action` and `loader` functions via `wireBacken +- Support of using NestJS @Injectable() services as Remix `action` and `loader` functions via `wireBacken` - Support of NestJS pipes in `action` and `loader` into backend services - Support of [NestJS versioning](https://docs.nestjs.com/techniques/versioning) routing controllers - Support of [NestJS global prefix](https://docs.nestjs.com/faq/global-prefix) in app module @@ -51,8 +51,8 @@ Details coming soon. To add the interop layer, import the `RemixModule` from `nest-remix` into your NestJS application module. The RemixModule takes a configuration object with the following properties - `publicDir` - The directory where your Remix public assets reside. This is the directory that Remix will build into. -- browserBuildDir` - The directory where your Remix browser build is located. This is the directory Remix will build into. -- serverBuildDir` - The directory where your Remix server build is located. This is the directory Remix will build into. +- `browserBuildDir` - The directory where your Remix browser build is located. This is the directory Remix will build into. +- `serverBuildDir` - The directory where your Remix server build is located. This is the directory Remix will build into. ```ts // before