Add webpack config for IntelliJ

This commit is contained in:
Hubert Van De Walle 2020-04-23 15:59:03 +02:00
parent 56b05a7131
commit 7f88f5371d

View File

@ -0,0 +1,9 @@
module.exports = {
resolve: {
// for IntelliJ
alias: {
'@': path.resolve(__dirname),
'~': path.resolve(__dirname)
}
}
};