1👍
Folder dist/
is where compiled css and js are placed. If you’re using npm build process as explained here https://docs.filegator.io/development.html dist folder will be overwritten each time npm build is triggered.
If you don’t want to build with npm then you can use provided configuration.php
file to add a simple style:
'add_to_head' => '<style>body{background:red}</style>',
or your own css file:
'add_to_head' => '<link href="/somewhere/your.css" rel=stylesheet>',
- [Vuejs]-Typescript Date Issue (VueJS)
- [Vuejs]-Vue js how to auto select checkbox based on database value with laravel
Source:stackexchange.com