diff --git a/bud.config.js b/bud.config.js index 7b780d3e9e..2e6fbbf34d 100644 --- a/bud.config.js +++ b/bud.config.js @@ -1,8 +1,8 @@ /** * Compiler configuration * - * @see {@link https://roots.io/docs/sage sage documentation} - * @see {@link https://bud.js.org/guides/configure bud.js configuration guide} + * @see {@link https://roots.io/sage/docs sage documentation} + * @see {@link https://bud.js.org/learn/config bud.js configuration guide} * * @type {import('@roots/bud').Config} */ @@ -10,8 +10,8 @@ export default async (app) => { /** * Application assets & entrypoints * - * @see {@link https://bud.js.org/docs/bud.entry} - * @see {@link https://bud.js.org/docs/bud.assets} + * @see {@link https://bud.js.org/reference/bud.entry} + * @see {@link https://bud.js.org/reference/bud.assets} */ app .entry('app', ['@scripts/app', '@styles/app']) @@ -21,16 +21,16 @@ export default async (app) => { /** * Set public path * - * @see {@link https://bud.js.org/docs/bud.setPublicPath} + * @see {@link https://bud.js.org/reference/bud.setPublicPath} */ app.setPublicPath('/app/themes/sage/public/'); /** * Development server settings * - * @see {@link https://bud.js.org/docs/bud.setUrl} - * @see {@link https://bud.js.org/docs/bud.setProxyUrl} - * @see {@link https://bud.js.org/docs/bud.watch} + * @see {@link https://bud.js.org/reference/bud.setUrl} + * @see {@link https://bud.js.org/reference/bud.setProxyUrl} + * @see {@link https://bud.js.org/reference/bud.watch} */ app .setUrl('http://localhost:3000')