Ask Your Question
3

What is the method for providing static images in NestJS?

asked 2023-07-02 14:55:27 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-07-02 15:09:01 +0000

ladyg gravatar image

The method for providing static images in NestJS is by using the "serveStatic()" method of the "@nestjs/serve-static" package.

Here's an example code snippet:

import { Module } from '@nestjs/common';
import { ServeStaticModule } from '@nestjs/serve-static';
import { join } from 'path';

@Module({
  imports: [
    ServeStaticModule.forRoot({
      rootPath: join(__dirname, '..', 'public'),
      serveRoot: '/images',
    }),
  ],
})
export class AppModule {}

In this example, we're importing the "ServeStaticModule" from the "@nestjs/serve-static" package, and configuring it to serve static files from the "public" directory at the "/images" route.

We can then place our static image files in the "public" directory, and access them in our HTML or Angular templates using the "/images" route. For example:

<img src="/images/my-image.png" alt="My Image">
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-02 14:55:27 +0000

Seen: 8 times

Last updated: Jul 02 '23