1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 05:40:09 +00:00
bramw_baserow/web-frontend/intellij-idea.webpack.config.js
2020-03-31 14:15:27 +00:00

16 lines
318 B
JavaScript

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