We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I use an index.html file as entry for the bundling process which links to SCSS and JS files:
index.html
<link rel="stylesheet" href="css/styles.scss" media="all" /> <script src="js/scripts.js" type="module" defer></script>
HTML, CSS and JS files are correctly output in the dist folder, with subfolders and names according to my parcel-namer-custom settings:
dist
"parcel-namer-custom": { ".js$": "[folder]/[name].[hash].[type]", ".scss$": "[folder]/[name].[hash].[type]" }
But the links in the output index.html file don't match:
<link rel="stylesheet" href="f9917d69015addbd" media="all"> <script src="92046c8cdbcd86e4" type="module" defer=""></script><script src="8b4d39e5a77eb9fb" defer="" nomodule=""></script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I use an
index.html
file as entry for the bundling process which links to SCSS and JS files:HTML, CSS and JS files are correctly output in the
dist
folder, with subfolders and names according to my parcel-namer-custom settings:But the links in the output
index.html
file don't match:The text was updated successfully, but these errors were encountered: