MSAL browser migration changes

This commit is contained in:
Sindhu Balasubramanian
2026-03-29 18:20:12 -07:00
parent 0b4c32a57d
commit b855094fb1
58 changed files with 9987 additions and 43 deletions

View File

@@ -116,6 +116,7 @@ module.exports = function (_env = {}, argv = {}) {
galleryViewer: "./src/GalleryViewer/GalleryViewer.tsx",
selfServe: "./src/SelfServe/SelfServe.tsx",
connectToGitHub: "./src/GitHub/GitHubConnector.ts",
redirectBridge: "./src/redirectBridge.ts",
...(mode !== "production" && { testExplorer: "./test/testExplorer/TestExplorer.ts" }),
};
@@ -165,6 +166,11 @@ module.exports = function (_env = {}, argv = {}) {
template: "src/SelfServe/selfServe.html",
chunks: ["selfServe"],
}),
new HtmlWebpackPlugin({
filename: "redirectBridge.html",
template: "src/redirectBridge.html",
chunks: ["redirectBridge"],
}),
...(mode !== "production"
? [
new HtmlWebpackPlugin({