Coder Social home page Coder Social logo

Comments (5)

allisonwhilden avatar allisonwhilden commented on May 28, 2024 1

I'm new to all of this, and I don't know if this helps at all -- but I ran into what seemed like a similar problem. When checking out my emitted image files, they appeared to be smaller in size and wouldn't open at all. I changed the extension of these files to .txt and opened them in a text editor, and noticed that they appeared to be a shortened data URI string -- but not the complete one you would get if you converted your original image to a data URI string.

Further investigation found that I appeared to have been running the files both through the URL-loader via my webpack config, and through file-loader in a similar 'require' statement in my CSS file. When I just used one or the other, everything worked out. So, if I commented out my URL-loader in my webpack config, my 'require' statement worked.

Don't know if this makes sense, is intentional, or is helpful at all -- I'm still very much learning all of this. But sharing it just in case it saves anyone else time.

from file-loader.

flyingzl avatar flyingzl commented on May 28, 2024 1

Same +1

My workaround is : add exclude to webpack.config.js

            {
                test: /\.(png|jpg|gif)$/,
                exclude: /\.dp\.(png|jpg|gif)/,
                loader: "url",
                query: {
                    limit: 8192,
                    name: 'imgs/[name].[ext]'
                }
            },

Please pay attention to the exclude, if a image named with foo.dp.png, it will not be parsed by url-loader, and you can require or import the image like the following codes:

import icon from 'file-loader?name=imgs/[name].[ext]!./foo.dp.png';
console.log( icon ) // imgs/foo.dp.png

import bar from './bar.png'
console.log(bar) // data:image/png;base64,iVBORw0KGgoAAAANS.....

from file-loader.

Yankovsky avatar Yankovsky commented on May 28, 2024

Same problem

from file-loader.

DevilZh avatar DevilZh commented on May 28, 2024

Same +1

from file-loader.

SpaceK33z avatar SpaceK33z commented on May 28, 2024

You can't use the file-loader twice this way. What @flyingzl said is the best answer.

from file-loader.

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.