JonoSuave
JonoSuave
That's good progress. How do I recompile the index.js file within the team-as-user folder?
Looks like I had to rename the team-as-user.ts file to index.js and include the source mapping comment at the bottom to get the tsc transpiler to update the index.js correctly.
Where in the gulpfile.js would you set mode: "development"? Here was my attempt, but mode isn't a valid property: ``` "use strict"; var build = require("@microsoft/sp-build-web"); build.addSuppression( "Warning - [sass]...
I think I figure out how to add the mode property, however, same issue persists (I'll see if I can spin up a demo project for you). Here's my updated...
Here's what my Teams Toolkit manifest.json looks like: ``` { "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.17/MicrosoftTeams.schema.json", "version": "1.26.0", "manifestVersion": "1.17", "id": "bda4dea9-fa92-4f2c-81a1-8b95a8c70e40", "name": { "short": "Directory", "full": "Full name for Directory" }, "developer": {...
Here's what my spfx teams manifest.json looks like: ``` { "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.17/MicrosoftTeams.schema.json", "version": "1.2", "manifestVersion": "1.17", "id": "aa1185ab-38c1-4621-b54d-90e94523e602", "developer": { "name": "JourneyTEAM, LLC", "mpnId": "", "websiteUrl": "https://www.journeyteam.com", "privacyUrl": "https://www.journeyteam.com", "termsOfUseUrl":...
Here's an example of how I call the two components from two separate webparts: ``` import * as React from "react"; import { useMemo, useState } from "react"; import styles...
Further update...just deploying my spfx solution and syncing to Teams works as a standalone personal app. The personal app that has multiple personal tabs (one being the spfx component and...
@VesaJuvonen any update on your guys end by chance?
From what I'm seeing, seems the issue may lie in that the teams app manifest only allows for one set of id and resource to be referenced in the webApplicationInfo....