🔧 bud config: set the public path by default (#3064)

This commit is contained in:
Ben Word
2022-06-20 14:31:26 -05:00
committed by GitHub
parent 8b0df45311
commit 16d99623a9

View File

@@ -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/');
};