Code Monkey home page Code Monkey logo

Comments (2)

farnabaz avatar farnabaz commented on May 18, 2024

Hi
I'm so glad you find module helpful
It seems that issue is related to url-loader behavior. As docs says:

url-loader return a DataURL if the file is smaller than a byte limit.

And default byte limit in Nuxt.js is 1000, So any SVG files smaller than 1000 byte will show up in js bundle as base64 URIs.

We'll fix this in our next release, Until then this useless data can be removed by modifying module rules directly in nuxt.config.js and change byte limit of SVG files.

build: {
    extend(config) {
      const urlLoader = config.module.rules.find(rule => String(rule.test).includes('svg'));
      urlLoader.test = /\.(png|jpe?g|gif)$/;
      config.module.rules.push({
          test: /\.svg$/,
          use: [
              {
                  loader: 'url-loader',
                  options: {
                      limit: 12,
                  },
              },
          ],
      })
    }
  }

from svg-sprite.

stefanjudis avatar stefanjudis commented on May 18, 2024

Thanks for the swift reply! Looking forward to the next release.

The snippet does the trick! 🎉

from svg-sprite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.