turn off filename hashing
this used to be possible in vue2.
Is there a way to turn off filename hashin in nuxt 3
/_nuxt/navigation.f9c6d3db.js -> /_nuxt/navigation.js
we're getting a lot of 404's
3 Replies
GitHub
Options for assets building without adding hash · Issue #378 · vite...
All referenced assets, including those using absolute paths, will be copied to the dist folder with a hashed file name in the production build. I'm trying to make a library builder out of c...
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
for nuxt generate where output files are in _nuxt folder:
vite: {
build: {
rollupOptions: {
output: {
entryFileNames: '_nuxt/[name].js',
chunkFileNames: '_nuxt/[name].js',
assetFileNames: '_nuxt/[name].[ext]'
}
}
}
},