rsnext/examples/with-glamor/next.config.js

17 lines
334 B
JavaScript
Raw Normal View History

const webpack = require('webpack')
module.exports = {
webpack: (config, { buildId, dev, isServer, defaultLoaders }) => {
const { plugins } = config
return {
...config,
plugins: [
...(plugins || []),
new webpack.ProvidePlugin({
Glamor: 'glamor/react',
}),
],
}
},
}