1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 07:37:30 +00:00
bramw_baserow/web-frontend/intellij-idea.webpack.config.js

16 lines
404 B
JavaScript

/** This file can be used in combination with intellij idea so the @ path resolves **/
const path = require('path')
module.exports = {
resolve: {
extensions: ['.js', '.json', '.vue', '.ts'],
root: path.resolve(__dirname),
alias: {
'@': path.resolve(__dirname),
'@@': path.resolve(__dirname),
'~': path.resolve(__dirname),
'~~': path.resolve(__dirname)
}
}
}