Skip to content

infinite-table/infinite-bundle-for-salesforce

Repository files navigation

Infinite with Vite

Bundling for salesforce

Bundle the app

$ npm run build

then go to /dist/assets:

  • rename index-<HASH>.js to index.js
  • rename index-<HASH>.css to index.css

Then archive the two files into a single zip and upload to salesforce static resource.

Let's name this resource infinitebundle in salesforce.

In your LWC project

import { LightningElement, api } from "lwc"; import { loadScript, loadStyle } from "lightning/platformResourceLoader"; import InfiniteBundle from "@salesforce/resourceUrl/infinitebundle"; export default class Infinite extends LightningElement { @api name; connectedCallback() { Promise.all([ loadScript(this, InfiniteBundle + "/index.js"), loadStyle(this, InfiniteBundle + "/index.css"), ]).then(() => { // @ts-ignore const el = this.refs.root; // this is the global fn the bundle exposed mountApp(el); }); } }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published