Replies: 1 comment 3 replies
-
|
This hasn't been tried yet. Do you need to write the output to the I can't think of why this shouldn't work, even if it is weird, so I'm fine to treat this as a bug as long as it's a simple fix! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi I am trying to utilize the .cache folder to deposit some files during build steps. I want to pick the up with mount afterwards but the content is not mounted. When I change the directory to outside the node_modules, it works.
Is this intended?
snowpack v2.13.3
snowpack.config.json
{ "install": [ "alpinejs" ], "mount": { "node_modules/.cache/11ty": "/", "src/assets": "/static" }, "plugins": [ [ "@snowpack/plugin-build-script", { "cmd": "postcss", "input": [ ".css" ], "output": [ ".css" ] } ], [ "@snowpack/plugin-run-script", { "cmd": "eleventy", "watch": "$1 --watch" } ] ] }.eleventy.js
Beta Was this translation helpful? Give feedback.
All reactions