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

Add relative resolve to webpack config

This commit is contained in:
Brent Jackson 2018-06-01 13:26:36 -04:00
parent 197c1919f1
commit 5be6ca1dd6

View File

@ -52,6 +52,8 @@ module.exports = {
modules: [
__dirname,
path.join(__dirname, '../node_modules'),
// testing relative path for global installs
path.relative(process.cwd(), path.join(__dirname, '../node_modules')),
'node_modules'
]
},