How to Access Static Resources in LWC

// miscStaticResource.js
import { LightningElement } from "lwc";
import TRAILHEAD_LOGO from "@salesforce/resourceUrl/trailhead_logo";
import TRAILHEAD_CHARACTERS from "@salesforce/resourceUrl/trailhead_characters";

export default class MiscStaticResource extends LightningElement {
  // Expose the static resource URL for use in the template
  trailheadLogoUrl = TRAILHEAD_LOGO;

  // Expose URL of assets included inside an archive file
  einsteinUrl = TRAILHEAD_CHARACTERS + "/images/einstein.png";
}
<!-- miscStaticResource.html -->
<template>
  <lightning-card title="MiscStaticResource" icon-name="custom:custom19">
    <div class="slds-m-around_medium">
      <img src={trailheadLogoUrl} />
      <img src={einsteinUrl} />
    </div>
  </lightning-card>
</template>

One Reply to “How to Access Static Resources in LWC”

Comments are closed.

Related Post

How to load external JS/CSS in LWC that imported in Static Resource?

In order to import the external or third party js or CSS in to LWC, We have to import them into Salesforce as static resource first. Then we need to import that file using loadScript and loadStyle methods and by referring file path inside the static resource. We need to import loadScript and loadStyle methods […]

How to subscribe to platform events in LWC?

In Salesforce, we often need to receive notifications or event when there is certain DML/Event happened at some part of the Salesforce by another user or in the backend or through API call from external System. This can be achieved through Platform events. We can subscribe to platform events, When subscribed to platform events we […]

How to refer Content Asset file in to LWC?

In order to bring/refer a Salesforce content file into LWC, You need to import it through ‘@salesforce/contentAssetUrl’ module. Syntax: import ASSETFILENAME from ‘@salesforce/contentAssetUrl/fileName’; Here ASSETFILENAME holds the data of the file and you can refer that in the HTML or assign it to any var in js and refer that var in HTML.