2021-11-18 16:40:33 +03:00
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
2023-01-20 16:20:06 +03:00
|
|
|
public: path.resolve(__dirname, '../public'),
|
|
|
|
src: path.resolve(__dirname, '../src'),
|
|
|
|
build: path.resolve(__dirname, '../build'),
|
|
|
|
'@node_modules': path.resolve(__dirname, '../node_modules'),
|
2021-11-18 16:40:33 +03:00
|
|
|
};
|