myPrayerJournal/src/app/vue.config.js
Daniel J. Summers c587d9772f A lot is working...
...but a lot is not. The JSON for the journal is not including the Id field; I suspect the majority of the problems reside with that issue.
2019-07-30 23:56:34 -05:00

10 lines
208 B
JavaScript

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