load assets using a configure function

This commit is contained in:
Julien Fastré 2019-12-04 14:04:02 +01:00
parent 277b470fca
commit 278e0de24d
3 changed files with 9 additions and 3 deletions

View File

@ -48,3 +48,8 @@ Version 1.5.7
- add a link between accompanying person and user
- add an icon when the file is opened / closed in result list, and in person rendering macro
- improve command to move person and all data: allow to delete some entities during move and add events
CRUD-init branch
================
- configure asset using a function

View File

@ -0,0 +1 @@
require('./sass/person.scss');

View File

@ -1,4 +1,4 @@
// this file loads all assets from the Chill person bundle
require('./Resources/public/css/person.css');
//require('./Resources/public/sass/person.scss');
module.exports = function(encore, entries) {
entries.push(__dirname + '/Resources/public/index.js');
};