samrith-s / parcel-plugin-structurize

A plugin to customize the output (dist) directory structure during production.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Public URL support

Immortalin opened this issue · comments

commented

This is the build command: parcel static/market/css/base.scss with the following structurize config "styles": { "match": "*.{css,css.map}", "folder": "static/market/js" },
The Django app serves static folder on /static by default

Source map error: request failed with status 404
Resource URL: http://localhost:4000/static/market/css/base.css
Source Map URL: /base.css.map

Hey, it has public url support already. It's a feature of Parcel itself.

You can use --public-url in the build command. So basically, you can change it like so:

parcel static/market/css/base.scss --public-url /static/

Source. Let me know if this resolves it! 😄

Closing due to no response.