myPrayerJournal/src/app/vue.config.js

10 lines
212 B
JavaScript
Raw Normal View History

const webpack = require('webpack')
module.exports = {
outputDir: '../api/MyPrayerJournal.Api/wwwroot',
configureWebpack: {
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
]
}
}