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
After updating from 2.6 to 2.7.1 I get the error: Can't find variable: path
Can't find variable: path
Error appears on load and causes Barba to fail
Just a basic setup
import barba from '@barba/core'; barba.init({ [...] })
Load the page.
Issue can be fixed by modifying core/dist/barba.umd.js with: From require("path") to require("path-to-regexp")
require("path")
require("path-to-regexp")
The text was updated successfully, but these errors were encountered:
3875d0c
No branches or pull requests
The problem
After updating from 2.6 to 2.7.1 I get the error:
Can't find variable: path
Details
Error appears on load and causes Barba to fail
Code To Reproduce Issue
Just a basic setup
Steps to reproduce issue
Load the page.
Issue can be fixed by modifying core/dist/barba.umd.js with:
From
require("path")
torequire("path-to-regexp")
The text was updated successfully, but these errors were encountered: