Marc Schipperheyn

Results 130 comments of Marc Schipperheyn

There are many ways in which you can do this. Personally, I use `dokku`, which gives you a Heroku like experience but using generic cloud servers.

Any news on this? In my case, I've got quite a bit going on the server, making shared code changes a slow process

You can use e.g. css-loader to import a global styles class `import './global.css' and then include "per class" css files to implement local styles `import styles as './myComponent.css'' There is...

In order to get styled-components working server-side with current v2-beta, which api seems still a bit under discussion (https://github.com/styled-components/styled-components/pull/214), you can use this approach. https://gist.github.com/mschipperheyn/c17280278218074a53147f54259af66a The reference keyword is: styledComponentCSS...

Brilliant! Just saved my bacon. Thanks!

@ephys A good way to see if any problems occurs with recursive imports is build a simple project, e.g. nextjs, with webpack and use the [circular-dependency-plugin](https://www.npmjs.com/package/circular-dependency-plugin). It will report any...

> Implemented in [sequelize/sequelize#15483](https://github.com/sequelize/sequelize/pull/15483) for v7, but with a slightly different approach: The [ref forwarding function receives the current sequelize instance](https://github.com/sequelize/sequelize/blob/d1061b6f0dd980ee9da7aa0ff016d643c6848a8d/test/unit/decorators/associations.test.ts#L19-L21) instead of a map of models > > Feedback...

I would suggest adding the option to copy-duplicate a product to a different channel. For us, it's not so much about duplicating a product as much as it is copying...

I consider it a bug as well. The workaround is to read the `defaultValue` from `useField` and set the form element value as `value={value ?? defaultValue}` where `value` would be...

So, I managed to get it working. It just doesn't work when I it's loaded in a component that is rendered by react-async-component. As long as I put react-dom-confetti in...