-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
svg-url-loader works not properly in v4.0.0-alpha.16 #4066
Comments
I believe I may be having the same issue, currently using storybook in full-control mode with typescript and getting this output from
My module.exports = (baseConfig, env, config) => {
config.module.rules.push({
test: /\.(ts|tsx)$/,
loader: require.resolve('ts-loader')
});
config.resolve.extensions.push('.ts', '.tsx');
return config;
}; |
It does seem that the file-loader works just fine.
|
Ok cool, I wanted to use the |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
Hey there stale bot. I took your digital advice and opened a pull request: Anyone on this issue know of any compelling reason to keep |
Bug or support request summary
Hello, im use StoryBook in my TypeScript project. Yesterday I noticed that the SVG-images are loading incorrectly, bug is present on image: http://joxi.ru/D2P4QR8IqdZ062
Please specify which version of Storybook and optionally any affected addons that you're running
My dependencies presents below:
Screenshots / Screencast / Code Snippets (Optional)
Im place SVG extension in 'test' options in my
webpack.config.js
file.and i switch my config to
full-control-mode
, becausesvg-url-loader
redefines my rule for SVG files infile-loader
.My config file present below:
The text was updated successfully, but these errors were encountered: