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
{{ message }}
This repository was archived by the owner on Dec 19, 2024. It is now read-only.
I'm attempting to use the app-location element provided by the version of this package using polymer 3
import{html,PolymerElement}from'../../node_modules/@polymer/polymer/polymer-element.js';import'../../node_modules/@polymer/app-route/app-location.js';exportclassMyElementextendsPolymerElement{//.. my other stuff here}
but when this file is rendered, it gives me the following error in the console:
Uncaught TypeError: Failed to resolve module specifier "@polymer/polymer/polymer-legacy.js". Relative references must start with either "/", "./", or "../".
Description
I'm attempting to use the
app-locationelement provided by the version of this package using polymer 3but when this file is rendered, it gives me the following error in the console:
After inspecting, it is failing on the the import lines in app-location.js.
I suspect this is due to a resolver issue since the
importpath is not relative? Any help would be appreciated. Thanks