mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-03 18:22:57 +00:00
10 lines
132 B
JavaScript
10 lines
132 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
webpack: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src/')
|
|
}
|
|
}
|
|
};
|