- Node.js v16.14.0 (it does not work on 16.17.0 for some mysterious reason)
Right now the best way to develop all 3 packages simultaneously (sequences, sequences-types and sequences-plugin-vmix) it to link them all together. How to do it?
- Go to sequences-types package directory and type
npm link. - Go to sequences-plugin-vmix package directory and type
npm link. - Go to sequences/backend directory and type
npm link sequences-types sequences-plugin-vmix. - Go to sequences-plugin-vmix package directory and type
npm link sequences-types. I know, this setup is crazy, I will think about how to make it better!
Right now there is no way to make Semantic UI use fonts that are locally hosted. A good alternative is using Fomantic UI's CSS instead (just install fomantic-ui-css and replace import path in index.tsx), but only after version 2.9.0 is released, because of these two issues:
For now, I am using CSS file from semantic-ui-offline with some additional fixes that I made on my fork (and maybe it's good to leave it this way if nothing breaks).