I am trying to use pjax on my website, but I can't get it to work. I tried two things:
Adding "require: pjax" to my browser.json
Using require('pjax'); in my client.js
Both times I ended up with a Module not found error, but I am sure that pjax is in my node_modules folder. Is it not possible to include modules in the browser with Lasso?
I am trying to use pjax on my website, but I can't get it to work. I tried two things:
"require: pjax"
to my browser.jsonrequire('pjax');
in my client.jsBoth times I ended up with a
Module not found
error, but I am sure that pjax is in my node_modules folder. Is it not possible to include modules in the browser with Lasso?