5 lines
125 B
JavaScript
5 lines
125 B
JavaScript
const path = require("path"); // NodeJS builtin.
|
|
|
|
module.exports = {
|
|
outputPath: path.resolve(__dirname, "../", "dist")
|
|
};
|