Hi devs!
I create tiddlywiki project using this method:
npm install -g tiddlywiki
tiddlywiki . --init server
tiddlywiki . --build index
The output file is generated under output folder and by default name as index.html
.
I can change output file name using file tiddlywiki.info
file as:
"build": {
"index": [
"--render",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"customfilename.html",
"text/plain",
"--output",
" my-tiddlywiki"
],
But --output
is not working, also I have tried tiddlywiki . --build index --output .
which is still not working,
How can is change output dir e.g. .
(root dir)