We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1- for users using socket.io , u still have to install pusher.js or u would get an error #40
ERROR in ./~/laravel-echo/dist/echo.js Module not found: Error: Can't resolve 'pusher-js'
2- elixir is using webpack which mostly is what users will be using, so no need for rollup
in both cases it should be left to the user to decide which tool he/she will be using.
UPDATE #110
The text was updated successfully, but these errors were encountered:
Temporarily you may use webpack config to ignore pusher-js:
Add this file to your project root:
webpack.config.js
var webpack = require("webpack"); module.exports = { plugins: [ new webpack.IgnorePlugin(/pusher-js/), ] }
Sorry, something went wrong.
@seancheung thank you so much .
No branches or pull requests
1- for users using socket.io , u still have to install pusher.js or u would get an error #40
2- elixir is using webpack which mostly is what users will be using, so no need for rollup
in both cases it should be left to the user to decide which tool he/she will be using.
UPDATE
#110
The text was updated successfully, but these errors were encountered: