Skip to content
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 created is blank #499

Open
Zombiemx opened this issue Jan 10, 2023 · 1 comment
Open

SVG created is blank #499

Zombiemx opened this issue Jan 10, 2023 · 1 comment

Comments

@Zombiemx
Copy link

Hi all,

I just tried to create an sprite with some svg images but, the svg is all white in the code is there but cannot see any icon there,

my webpack config is this one

`const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const SpriteLoaderPlugin = require("svg-sprite-loader/plugin");

module.exports = merge(common, {
mode: 'development',
module: {
rules: [
{
test: /.(js|jsx)$/,
loader: "babel-loader",
exclude: /node_modules/,
options: {
cacheDirectory: true
}
},
{
test: /.svg$/,
loader: "svg-sprite-loader",
include: path.resolve(__dirname, 'src/icons'),
options: {
extract: true,
spriteFilename: "../src/icons/images.svg"
}
},
{ test: /.css$/, use: [ 'style-loader', 'css-loader' ] },

  ],

},
plugins: [
new SpriteLoaderPlugin()
],
});`

tks for the help !!

@chemparparokke
Copy link

@Zombiemx Hi! What version of webpack do you use?
Or maybe you already solved this problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants