Created
December 4, 2019 07:55
-
-
Save jonas8/95d8f9e6d0aeb1f6f2d8dcffead97a8b to your computer and use it in GitHub Desktop.
storybook for next.js webpack config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path') | |
const getBaseWebpackConfig = require('next/dist/build/webpack-config').default | |
const generateBuildId = require('next/dist/build/generate-build-id').generateBuildId | |
const loadConfig = require('next/dist/next-server/server/config').default | |
const { PHASE_DEVELOPMENT_SERVER } = require('next/dist/next-server/lib/constants') | |
const shortId = require('shortid') | |
module.exports = async ({ config, mode }) => { | |
const dir = path.resolve(__dirname, '..') | |
const _config = loadConfig(PHASE_DEVELOPMENT_SERVER, dir) | |
const buildId = await generateBuildId(shortId, shortId) | |
const nextBaseWebpackConfig = await getBaseWebpackConfig(dir, { | |
buildId, | |
isServer: false, | |
config: _config, | |
entrypoints: {} | |
}) | |
const { module: { rules }, resolveLoader, plugins } = nextBaseWebpackConfig | |
config.resolveLoader = {...config.resolveLoader, ...resolveLoader} | |
config.module.rules = rules | |
config.plugins.push(...plugins) | |
config.plugins = [...new Set(config.plugins)] | |
return config; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment