Reputation: 27
I'm working with Total js Flow. I can't in any way modify the CSS and the tags in HTML files as the library every time the app is runnning regenerates the folder 'tmp' that contains all the files served on browser, not allowing the change if not trying to change the flow directly from internal library. On the documentation (brief and confusing) I didn't find anything about it on any setting to use. Does anyone know how to proceed? Thank you all.
Upvotes: 1
Views: 554
Reputation: 748
You can modify Total.js Flow easily. Just edit source-code in source
directory (https://github.com/totaljs/flow) and build your own flow.package
via make.sh
or follow the steps below:
$ npm install -g total.js
$ cd
/flow/source/`$ tpm create flow.package
flow.package
to your appRead documentation about packages: https://docs.totaljs.com/latest/en.html#pages~Packages~(creating-a-package)
Upvotes: 1