Add source map
This commit is contained in:
parent
92f0735b38
commit
50f9cc12eb
2 changed files with 7 additions and 1 deletions
|
@ -221,7 +221,10 @@ export const OpenViduProvider = ({
|
|||
});
|
||||
|
||||
const token = await getToken(room);
|
||||
await newSession.connect(token, getUserData());
|
||||
|
||||
const userData = getUserData();
|
||||
console.log(token, userData);
|
||||
await newSession.connect(token, userData);
|
||||
|
||||
setLocalStream(
|
||||
new LocalStream({ session: newSession, OV: OVRef.current })
|
||||
|
|
|
@ -68,5 +68,8 @@ export default defineConfig({
|
|||
reactRefresh(),
|
||||
analyze({ summaryOnly: true, hideDeps: true, limit: 20 }),
|
||||
],
|
||||
build: {
|
||||
sourcemap: "inline",
|
||||
},
|
||||
...proxy,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue