Mario Scheliga

Results 8 comments of Mario Scheliga

yeah think also that should be possible, think I've identified the line where to change the babel presets: https://github.com/chinchang/web-maker/blob/master/src/script.js#L958-L960 `stage-2` needs to be changed to `stage-0` & adding `transform-decorators-legacy` to...

actually i really think that script preloading it obviously out of scope of this project - or it at least should be. as mentioned #43

just import the needed components directly ``` import OTSession from 'opentok-react/dist/OTSession' ``` no preload is triggered. Somehow it works for me at least

so i made it work by just: schema.prisma ``` generator client { provider = "prisma-client-js" previewFeatures = ["driverAdapters"] } datasource db { provider = "postgresql" url = env("DATABASE_URL") } ```...