Bundle the app
$ npm run buildthen go to /dist/assets:
- rename
index-<HASH>.jstoindex.js - rename
index-<HASH>.csstoindex.css
Then archive the two files into a single zip and upload to salesforce static resource.
Let's name this resource infinitebundle in salesforce.
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);
});
}
}