You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently developing a package using TSDX, and I have encountered an issue where images, specifically SVG or other image formats, are not displaying when I import and use the components from the published package. The images are displaying correctly in Storybook.
Description:
I am currently developing a package using TSDX, and I have encountered an issue where images, specifically SVG or other image formats, are not displaying when I import and use the components from the published package. The images are displaying correctly in Storybook.
This is my TSDX config file.
`const postcss = require('rollup-plugin-postcss');
const url = require('@rollup/plugin-url');
module.exports = {
rollup(config, options) {
config.plugins = [
// Force the
url
plugin to emit files.url({ limit: 0, incude: ['/*.png', '/*.jpg'] }),
...config.plugins,
];
config.plugins.push(
postcss({
config: {
path: './postcss.config.js',
},
extensions: ['.css'],
minimize: true,
inject: {
insertAt: 'top',
},
})
);
},
};
`
The text was updated successfully, but these errors were encountered: