Matt Rintoul

Results 2 comments of Matt Rintoul

It's possible to use namespaces by hooking onto the `timber/loader/loader` filter. In your functions.php (or plugin) add ``` add_filter('timber/loader/loader', function($loader){ $loader->addPath(__DIR__ . "/views/components", "components"); return $loader; }); ``` `$loader` is...

In my case, I was getting this error because I was trying to import from the wrong package, in `entry.client.jsx` I had `import { RemixBrowser } from "@remix-run/node";` which should...