chill-bundles/chill.webpack.config.js

9 lines
371 B
JavaScript

// this file loads all assets from the Chill main bundle
module.exports = function(encore, entries) {
entries.push(__dirname + '/Resources/public/main.js');
encore.addEntry('login', './vendor/chill-project/main/Resources/public/modules/login_page/index.js');
encore.addAliases({
ShowHide: __dirname + '/Resources/public/modules/show_hide/'
});
};