This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
Recursive output folder creation with 3.3.4 release #30
Comments
@Guymestef Can you show your Webpack config's plugins array, please? |
Sorry, I can't right now. It's from a work project and I'm off for the rest of the year... ^_^' |
@Guymestef I need to see the WebpackPwaManifest config. Did you use the property |
It's from memory, but I think I used: filename: "manifest.json" |
Please, update to v3.4.0 and add Reopen this issue if it doesn't work yet. |
satazor
added a commit
to satazor/webpack-pwa-manifest
that referenced
this issue
Feb 13, 2018
satazor
added a commit
to satazor/webpack-pwa-manifest
that referenced
this issue
Feb 13, 2018
Also: - Fix svg assets not having the correct public url - Remove debug console.logs from the code Fixes arthurbergmz#30
satazor
added a commit
to satazor/webpack-pwa-manifest
that referenced
this issue
Feb 13, 2018
Also: - Fix svg assets not having the correct public url - Remove debug console.logs from the code Fixes arthurbergmz#30
satazor
added a commit
to satazor/webpack-pwa-manifest
that referenced
this issue
Feb 13, 2018
Also: - Fix svg assets not having the correct public url - Remove debug console.logs from the code Fixes arthurbergmz#30
satazor
added a commit
to satazor/webpack-pwa-manifest
that referenced
this issue
Feb 13, 2018
Also: - Fix svg assets not having the correct public url - Remove debug console.logs from the code Fixes arthurbergmz#30
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
With following version of packages:
"webpack": "~3.10.0",
"webpack-hot-middleware": "~2.21.0",
"webpack-pwa-manifest": "~3.3.4"
Each time the HMR rebuild sources, a new output folder with a manifest file is created inside the normal output folder, ending up after few rebuild with something like that:
/dist/[compiled sources]
/dist/manifest.json
/dist/dist/manifest.json
/dist/dist/manifest.json
/dist/dist/dist/manifest.json
/dist/dist/dist/dist/manifest.json
/dist/dist/dist/dist/dist/manifest.json
...
Everything was fine with "webpack-pwa-manifest": "~3.3.2"
Webpack has the conf output.publicPath set to '/dist/' and output.path set to path.join(__dirname, './ClientApp/dist')
The text was updated successfully, but these errors were encountered: