strip unnecessary imports from js app files

This commit is contained in:
Nabeel Shahzad
2018-03-27 18:18:25 -05:00
parent 1518b8d4f7
commit a1a8c6f141
18 changed files with 1508 additions and 299 deletions

14
webpack.config.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
const webpack = require('webpack');
module.exports = {
entry: {
admin: __dirname + "/resources/js/admin/app.js",
app: __dirname + "/resources/js/frontend/app.js",
},
output: {
filename: "[name].js",
path: __dirname + "/public/js/",
}
};