Updating theme and brand - throwing Object(...) not a function
See original GitHub issuehow do you change the storybook logo?
I’m getting below errors after applying the theme:
import { create } from ‘@storybook/theming’;
yourTheme.js
export default create({
base: 'light',
brandTitle: 'My custom storybook',
brandUrl: 'https://example.com',
brandImage: 'https://placehold.it/350x150',
});
config.js
import yourTheme from './yourTheme';
const req = require.context('../stories', true, /\.stories\.js$/);
function loadStories() {
req.keys().forEach(filename => req(filename));
}
addDecorator(story => (
<ThemeProvider theme={theme}>
{story()}
</ThemeProvider>
));
addParameters({
options: {
theme: yourTheme,
},
});
configure(loadStories, module);
Uncaught TypeError: Object(...) is not a function
at Module../node_modules/@emotion/core/dist/core.browser.esm.js (core.browser.esm.js:15)
at __webpack_require__ (bootstrap:781)
at fn (bootstrap:149)
at Module../node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js (styled-base.browser.esm.js:1)
at __webpack_require__ (bootstrap:781)
at fn (bootstrap:149)
at Module../node_modules/@emotion/styled/dist/styled.browser.esm.js (styled.browser.esm.js:1)
at __webpack_require__ (bootstrap:781)
at fn (bootstrap:149)
at Object../node_modules/@storybook/theming/dist/index.js (index.js:9)
package.json
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-storysource": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.5.0",
"stylelint-processor-styled-components": "^1.3.2",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.0"
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Plugin throwing TypeError after WordPress 4.5 update
Error: TypeError: $template.get is not a function Source File: ... The error arises when you update to WP 4.5 for me running the...
Read more >There was an error loading the content. Error: Object(…) is not ...
Hi there! My site produced an error message at the top of the product listings and as I am not a developer of...
Read more >JavaScript TypeErrors and Techniques to Prevent Them
A short guide on best practices, techniques and existing tooling available to prevent TypeErrors in JavaScript or TypeScript.
Read more >Fatal error after updating or installing ... - Elementor
Learn everything about Fatal error after updating or installing Elementor or Elementor Pro in this article from Elementor's Knowledge Base.
Read more >Theming - Material UI - MUI
If you wish to customize the theme, you need to use the ThemeProvider component in order to inject a theme into your application....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I dont think the issue is resolved. I’m still seeing the same error from the console.
upgraded storybook to v5.2.5
Can you please try to import the
create
function like so: