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
I'm using webpack 5 for my project and in case anyone needs this. I was able to get a global instance of Flasher working using the following method.
webpack config:
module: { rules: [ { test: require.resolve("toastr"), loader: "expose-loader", options: { exposes: ["toastr"], }, }, { test: require.resolve("@flasher/flasher"), loader: "expose-loader", options: { exposes: ["Flasher"], }, } ] }
in app.js:
import toastr from "toastr"; // toastr defaults toastr.options.timeOut = 10000; toastr.options.closeButton = true; toastr.options.escapeHtml = true; toastr.options.progressBar = true; toastr.options.closeOnHover = false; import { default as Flasher } from "@flasher/flasher"; import { default as ToastrFactory } from "@flasher/flasher-toastr"; Flasher.getInstance().addFactory("toastr", new ToastrFactory());
The text was updated successfully, but these errors were encountered:
Hello @jamesj2 Thank you for the tips 🙏
Sorry, something went wrong.
No branches or pull requests
I'm using webpack 5 for my project and in case anyone needs this. I was able to get a global instance of Flasher working using the following method.
webpack config:
in app.js:
The text was updated successfully, but these errors were encountered: