1
1
mirror of https://github.com/c8r/x0.git synced 2024-08-16 17:00:24 +03:00

Use require.resolve to determine path to whc

This commit is contained in:
John Otander 2018-06-13 18:42:20 -06:00
parent 4d62a17aba
commit 955c564738

View File

@ -25,7 +25,7 @@ module.exports = async (opts) => {
config.mode = 'development'
config.context = opts.dirname
config.entry = opts.entry || path.join(__dirname, './entry')
config.output= {
config.output = {
path: path.join(process.cwd(), 'dev'),
filename: 'dev.js',
publicPath: '/'
@ -36,10 +36,12 @@ module.exports = async (opts) => {
path.join(opts.dirname, 'node_modules')
)
const whcAlias = config.resolve.alias['webpack-hot-client/client']
if (!fs.existsSync(whcAlias)) {
const whcPath = 'node_modules/webpack-hot-client/client'
config.resolve.alias['webpack-hot-client/client'] = path.join(process.cwd(), whcPath)
if (config.resolve.alias) {
const whcAlias = config.resolve.alias['webpack-hot-client/client']
if (!fs.existsSync(whcAlias)) {
const whcPath = path.dirname(require.resolve('webpack-hot-client/client'))
config.resolve.alias['webpack-hot-client/client'] = whcPath
}
}
config.plugins.push(