Closed
Description
Current behavior
When I try to use react-styleguidist with CRA, without changing the config, it seems like hot reloading are not working properly. Whenever I update my code, I am able to see the source refresh in the inspector, but nothing changes on the page. However, when I add
dangerouslyUpdateWebpackConfig: (c) => {
c.cache = false
return c
}
to my styleguide-config file, it's working as expected.
To reproduce
Here are my current set of dependencies and scripts
"scripts": {
"format": "prettier --write src/**/*",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"styleguide": "styleguidist server --open"
},
"dependencies": {
"multi-download": "^2.0.1",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"soundcloud": "^3.3.0",
"spinkit": "^1.2.5"
},
"devDependencies": {
"prettier": "^1.14.3",
"react-scripts": "^2.0.5",
"react-styleguidist": "^8.0.2"
}
I'm using css modules which comes with CRA.
Here is an example component:
import React from 'react'
import PropTypes from 'prop-types'
import styles from './Accordion.module.css'
const Accordion = ({children}) => (
<ul className={styles.accordion}>{children}</ul>
)
Accordion.propTypes = {
children: PropTypes.node.isRequired
}
export default Accordion
Expected behavior
I would expect this to work straight out of the box.