scriptPilot / app-framework

Applications for any device with HTML, CSS and JavaScript - free and open source!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

v3 - add custom nodes to html

tiptronic opened this issue · comments

Either add the ability to overwrite the base 'index.html' or add the ability to add custom nodes (e.g. css) to the html.

@tiptronic - What is the use case behind? You can add css

  • in the app.vue file as style tag
  • in each page as style tag
  • or - if preferred - in a app.css file in the app folder

I can add my static app.css due to the compiler rules, but that is not sufficient.

If I want to create a page or library with custom CSS (depending on the case), I need to add the ability to add a path to append the css to the included css.

The app.vue style tag is not sufficient, because it's not dynamic.

The proper way would be to add it in the config.js imo

The above also applies to SEO rules and meta tags.

...or easier said:

how do I include a mobile bootstrap (e.g. derived from git) into my build proecess?