Freddie Mixell

Results 18 comments of Freddie Mixell

Could you link your repo? I'm using styled components with a fairly large production site built with this boilerplate. Probably just an issue with the ssr, I believe I had...

This is what I'm using server.get("/:slug", (req, res) => { const actualPage = "/page"; const queryParams = { slug: req.params.slug, apiRoute: "page" }; const actualPageBlog = "/blog"; const queryParamsBlog =...

This will give you a different page template for a blog just rinse and repeat

@Emiliano-Bucci Siteground does have hosting for node but you're going to be much better off hosting this with Zeit's now. You should keep your WordPress install on siteground and use...

`const AccountPage = ({ authUser }) => {` ` if ( null === authUser ) {` ` return null;` ` }` ` return (` ` ` ` Account: {authUser.email}` `...

Same problem for me. If I switch to npm it does finish but with an error: `Error: Command failed with exit code 127: npm install`

I figured out that the problem is happening when the example project is being installed. Hope this helps! ``` npm ERR! code 127 npm ERR! path /Users/freddiemixell/repos/modal-router/node_modules/typescript npm ERR! command...

All of the folders have package.json’s in them if you’re still out there! Lol just use “npm install” from within the same directory as the package.json. Any time your working...

I'll add I was able to fix this by changing line 56 of NopeObject.js to `const error = validator.validate(entry?.[key], ctx, options);`

@paulschreiber I'm not sure if my issue is related to this, I have the following error. "Detected usage of a non-sanitized input variable" with `$_POST['taxonomoy_ordering_data']` This is an array of...