mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
Merge remote-tracking branch 'origin/upgrade-sf3' into upgrade-sf3
This commit is contained in:
commit
da0db5ba9a
27
chill.webpack.config.js
Normal file
27
chill.webpack.config.js
Normal file
@ -0,0 +1,27 @@
|
||||
// this file loads all assets from the Chill main bundle
|
||||
|
||||
// import jQuery
|
||||
const $ = require('jquery');
|
||||
// create global $ and jQuery variables
|
||||
global.$ = global.jQuery = $;
|
||||
|
||||
const moment = require('moment');
|
||||
global.moment = moment;
|
||||
|
||||
const pikaday = require('pikaday-jquery');
|
||||
|
||||
const select2 = require('select2');
|
||||
global.select2 = select2;
|
||||
|
||||
// import js
|
||||
import {chill} from './Resources/public/js/chill.js';
|
||||
global.chill = chill;
|
||||
|
||||
// css
|
||||
//require('./Resources/public/sass/_custom.scss');
|
||||
require('./Resources/public/css/chillmain.css');
|
||||
require('./Resources/public/css/pikaday.css');
|
||||
require('./Resources/public/css/scratch.css');
|
||||
//require('./Resources/public/css/select2/select2.css');
|
||||
|
||||
// img
|
Loading…
x
Reference in New Issue
Block a user