mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 07:37:30 +00:00
16 lines
404 B
JavaScript
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)
|
|
}
|
|
}
|
|
}
|