[Vuejs]-How to reference dist/js files from mvc view index.cshtml

0👍

You can disable the filename hashing in the config so that you can reference the js file output to the dist directory.

module.exports = {
filenameHashing: false,
👤Matt

Leave a comment