myPrayerJournal/src/app/vue.config.js
2018-08-21 20:39:41 -05:00

10 lines
212 B
JavaScript

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