guild_front/config/paths.js

8 lines
251 B
JavaScript
Raw Normal View History

2023-05-24 15:34:43 +03:00
const path = require("path");
2021-11-18 16:40:33 +03:00
module.exports = {
2023-05-24 15:34:43 +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
};