Reputation: 4507
Let's say I compile some JS assets to dist/static/js:
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js'),
},
Before running npm run build
I create one file in /dist/, /static/ and /js/.
After running npm run build
this file was removed. The one created in /static/ and /js/ is gone. How can I prevent it?
I'm using Vue.js/Webpack boilerplate: https://github.com/vuejs-templates/webpack
Upvotes: 0
Views: 1079
Reputation: 20309
If you look here:
You can see that a package called rimraf
is being imported:
const rm = require('rimraf')
This package is responsible for clearing out your assetsRoot
and assetsSubDirectory
. This is a good thing because usually when you re-run your build process from nothing, you want a clean slate to begin with.
I would advise you not to disable this but rather put your file in another directory or let your Javascript generate your file since the removal takes places before the compilation.
Upvotes: 1