Last fix for Huebee issue.
After some major debugging once again, I've concluded that the previous webpack.mix.js worked fine, but threw an error when minifying the app.js file. The culprit is because the current app.js contains some newer ECMAScript code that needs to be translated. However, with the current inclusion of huebee.js into the samme command, it seems to mess things up. Just as a potensial fix for now is to just ignore the issue, and have a stab at it at a later date. This reverts the "fixes" I've made before.
This commit is contained in:
parent
9195eead27
commit
d3819a6a88
5 changed files with 152 additions and 7665 deletions
6023
public/css/app.css
vendored
6023
public/css/app.css
vendored
File diff suppressed because one or more lines are too long
1786
public/js/app.js
vendored
1786
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
3
public/mix-manifest.json
generated
3
public/mix-manifest.json
generated
|
@ -1,4 +1,3 @@
|
|||
{
|
||||
"/js/app.js": "/js/app.js?id=58b8bcf2d5c2eee74c51",
|
||||
"/css/app.css": "/css/app.css?id=e405a67622368f195d1b"
|
||||
"/css/app.css": "/css/app.css"
|
||||
}
|
|
@ -1,6 +1,3 @@
|
|||
import Huebee from 'huebee';
|
||||
window.Huebee = Huebee;
|
||||
|
||||
$.when( $.ready ).then(function() {
|
||||
|
||||
if($('.message-container').length) {
|
||||
|
|
2
webpack.mix.js
vendored
2
webpack.mix.js
vendored
|
@ -11,7 +11,7 @@ let mix = require('laravel-mix');
|
|||
|
|
||||
*/
|
||||
|
||||
mix.js([
|
||||
mix.scripts([
|
||||
//'resources/assets/js/jquery-ui.min.js',
|
||||
'resources/assets/js/huebee.js',
|
||||
'resources/assets/js/app.js'
|
||||
|
|
Loading…
Add table
Reference in a new issue