Styled components config

PHOTO EMBED

Tue Apr 25 2023 07:02:34 GMT+0000 (Coordinated Universal Time)

Saved by @Kristi

//create a webpack.config.js file on the root of the project to use the latest version of styled components with react and add the following snippet:

const path = require('path');

module.exports = {
  resolve: {
    alias: {
      'styled-components': path.resolve(
        __dirname,
        'node_modules',
        'styled-components'
      ),
    },
  },
};
content_copyCOPY