Commit bdff23b1 authored by Robert Knight's avatar Robert Knight

Add admin site bundle

 * Unset the doNotParse flag on Bootstrap, since the npm package
   _does_ use CommonJS modules.
parent 8d187151
......@@ -94,10 +94,16 @@ var siteBundleOpts = Object.assign({}, baseOpts, {
entry: './h/static/scripts/site',
});
var adminSiteBundleOpts = Object.assign({}, baseOpts, {
name: 'admin-site',
entry: './h/static/scripts/admin-site',
});
var bundles = [
appBundleOpts,
extensionBundleOpts,
siteBundleOpts,
adminSiteBundleOpts,
injectorBundleOpts
];
......
window.$ = window.jQuery = require('jquery');
require('bootstrap');
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment