c587d9772f
...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.
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
const webpack = require('webpack')
|
|
module.exports = {
|
|
outputDir: '../MyPrayerJournal.Api/wwwroot',
|
|
configureWebpack: {
|
|
plugins: [
|
|
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
|
|
]
|
|
}
|
|
}
|