Implement autoload system for styles/scripts

This commit is contained in:
2017-07-01 04:52:49 -07:00
parent 24f0092d53
commit 39ac9e7ecc
8 changed files with 38 additions and 5 deletions

View File

@@ -0,0 +1 @@
import 'bootstrap';

View File

@@ -1,6 +1,8 @@
// import external dependencies
import 'jquery';
import 'bootstrap';
// Import everything from autoload
import "./autoload/**/*"
// import local dependencies
import Router from './util/Router';