diff --git a/build.js b/build.js index 54b9abea4a4e8c86ca1102eb516c689be27764c5..8fb487fc2392357576964b995c29b65b9cc293e7 100644 --- a/build.js +++ b/build.js @@ -3,7 +3,7 @@ "use strict"; const build_conf = { - protected_dirs: ["assets", "style"], + protected_dirs: ["assets", "style", "articles"], }; const fs = require("fs"); diff --git a/constants.js b/constants.js index 7f6ff3014db76431f8bc0e960e300006c1471149..fd8b9bd8a32e15fd08a8612c718d299b3241bf27 100644 --- a/constants.js +++ b/constants.js @@ -2,4 +2,5 @@ const { server_url } = require("./config"); module.exports = { images_url: `${server_url}/assets/images`, + articles_url: `${server_url}/articles`, };