1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-noscript/next.config.js

11 lines
242 B
JavaScript
Raw Normal View History

2017-09-08 21:33:15 +00:00
module.exports = {
webpack: (config, { dev }) => {
if (!dev) {
config.resolve.alias = {
'react-dom/server': require.resolve('react-dom/umd/react-dom-server.browser.production.min.js')
2017-09-08 21:33:15 +00:00
}
}
return config
}
}