From 16d99623a90eb4d48fc97bbc8b2121f64c12d9f9 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Mon, 20 Jun 2022 14:31:26 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20bud=20config:=20set=20the=20publ?= =?UTF-8?q?ic=20path=20by=20default=20(#3064)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bud.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bud.config.js b/bud.config.js index 16c0c29..6058b51 100644 --- a/bud.config.js +++ b/bud.config.js @@ -37,5 +37,10 @@ module.exports = async (app) => { /** * Development URL to be used in the browser. */ - .serve('http://0.0.0.0:3000'); + .serve('http://0.0.0.0:3000') + + /** + * Relative path to the public directory. + */ + .setPublicPath('/app/themes/sage/public/'); };