mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
17 lines
330 B
JavaScript
17 lines
330 B
JavaScript
|
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'
|
||
|
})
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|