rsnext/examples/with-lingui/next.config.js
2019-02-21 12:53:02 +01:00

13 lines
211 B
JavaScript

module.exports = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.po/,
use: [
{
loader: '@lingui/loader'
}
]
})
return config
}
}