diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-04 16:53:54 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-11 08:47:44 +0100 |
commit | 75d52dea17a72054538ddcc0904052c98b819a6a (patch) | |
tree | e60a039c7b41da0a822c623ceeb6678b72ea540b /apps/systemtags | |
parent | d576ffd4873448501e848a7dd937981ac69499dd (diff) | |
download | nextcloud-server-75d52dea17a72054538ddcc0904052c98b819a6a.tar.gz nextcloud-server-75d52dea17a72054538ddcc0904052c98b819a6a.zip |
Move core/systemtags to webpack
* Use webpack to bundle the core systemtags so the webserver can serve
them statically
* Bundle the core scss in there as well (saves a request)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/systemtags')
-rw-r--r-- | apps/systemtags/appinfo/app.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/systemtags/appinfo/app.php b/apps/systemtags/appinfo/app.php index 6f478273487..0fcf4134864 100644 --- a/apps/systemtags/appinfo/app.php +++ b/apps/systemtags/appinfo/app.php @@ -33,9 +33,8 @@ $eventDispatcher->addListener( 'OCA\Files::loadAdditionalScripts', function() { // FIXME: no public API for these ? - \OCP\Util::addScript('systemtags/merged'); + \OCP\Util::addScript('dist/systemtags'); \OCP\Util::addScript('systemtags', 'merged'); - \OCP\Util::addStyle('systemtags'); \OCP\Util::addStyle('systemtags', 'systemtagsfilelist'); } ); |