@@ -1,17 +1,17 @@
 /**
  * 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/ sage documentation}
+ * @see {@link https://bud.js.org/learn/config bud.js configuration guide}
  *
  * @type {import('@roots/bud').Config}
  */
 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')