Skip to content

Commit

Permalink
fix pipeline publish-npm node ver
Browse files Browse the repository at this point in the history
  • Loading branch information
paullobofynd committed Oct 4, 2024
1 parent b52f9e5 commit 60300e3
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
const path = require('path');
// const path = require('path');

console.log('vue.config.js is being used!'); // Debug log
// console.log('vue.config.js is being used!'); // Debug log

// module.exports = {
// configureWebpack: {
// resolve: {
// alias: {
// '@': path.resolve(__dirname, 'src')
// }
// }
// },
// css: {
// loaderOptions: {
// less: {
// lessOptions: {
// strictMath: true,
// noIeCompat: true,
// },
// },
// },
// },
// };

module.exports = {
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
},
css: {
loaderOptions: {
less: {
lessOptions: {
strictMath: true,
noIeCompat: true,
},
},
},
},
};

0 comments on commit 60300e3

Please sign in to comment.