Coder Social home page Coder Social logo

Comments (3)

ChadKillingsworth avatar ChadKillingsworth commented on May 18, 2024

For a URL, href="foo/bar.html means import './foo/bar.html.

Thankfully webpack has a special syntax to escape that: href="~foo/bar.html" which means import 'foo/bar.html'.

from polymer-webpack-loader.

ChadKillingsworth avatar ChadKillingsworth commented on May 18, 2024

Missed the last part:

and have Webpack lookup the correct url in my components folder?

Using the ~ prefix, you'll switch to the node module resolution algorithm. That will attempt to lookup components in your node_modules folder (or bower_components if you have it configured). You can customize those folders for webpack, but you'd really be doing something non-standard at that point.

from polymer-webpack-loader.

seb-ster avatar seb-ster commented on May 18, 2024

Thanks!
Saw the ~ mentioned in your Polymer+Webpack video and saw no use for it then. Completely forgot about it.

and have Webpack lookup the correct url in my components folder?

In my previous setup (just using modules) i had Webpack setup so that import URLs were resolved not only against the node_modules folder, but also against my own src/modules folder.
This way i was able to consistently reference npm modules as well as my own private modules.

And now that i got <link> working, i can use that same setup again.

Webpack excerpt:

  resolve: {
    modules: [
      'node_modules',
      'bower_components',
      path.resolve(__dirname, './src/components')
    ],
    descriptionFiles: ['package.json']
  }

from polymer-webpack-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.