DEV Community

Discussion on: Absolute Paths in Svelte

Collapse
 
ozzythegiant profile image
Oziel Perez

Notes: resolve property no longer exists on this plugin. If you wish to use something like "@/components" in your imports, the specific way to define this is:

alias({
    entries: [
        { find: '@', replacement: "/src" },
    ]
})
Enter fullscreen mode Exit fullscreen mode

It seems the replacement path is based on the project's root folder