-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: rklugman <[email protected]>
- Loading branch information
1 parent
8986cde
commit 8df2d8d
Showing
6 changed files
with
3,680 additions
and
6,901 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/*! | ||
* Pusher JavaScript Library v7.0.6 | ||
* https://pusher.com/ | ||
* | ||
* Copyright 2020, Pusher | ||
* Released under the MIT licence. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"/js/nova-echo.js": "/js/nova-echo.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
let mix = require('laravel-mix') | ||
let path = require('path') | ||
|
||
mix.setPublicPath('dist') | ||
.js('resources/js/nova-echo.js', 'js') | ||
mix.alias({ | ||
'laravel-nova': path.join(__dirname, '../laravel/nova/resources/js/mixins/packages.js'), | ||
}) | ||
|
||
mix.js('resources/js/nova-echo.js', 'js').vue({ version: 3 }) | ||
.webpackConfig({ | ||
externals: { | ||
vue: 'Vue', | ||
}, | ||
output: { | ||
uniqueName: 'vendor/nova-echo', | ||
} | ||
}) |
Oops, something went wrong.