This is the source for the nativescript-vue.org website.
Contributions are welcome, all the content is placed in the content directory.
After cloning the repository, do the following steps
cd nativescript-vue.org/
npm install
npm run build:js
npm run build:css
npm run buildThis sequence is only needed the first time. After that, the only command needed is:
npm run buildInstall the serve npm package globaly:
npm install -g serveRun the HTTP server using the already generated dist/ directory:
serve dist/Now, you can open the http://localhost:5000 URL in your browser to see the generated docs.
In order to detect changes in the content directory and rebuild automatically the docs, run the following sentence:
npm run dev