Skip to content

Commit

Permalink
💡 Update links in bud.config.js (#3154)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianenriquez authored Dec 8, 2023
1 parent 285a273 commit 00691cb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bud.config.js
Original file line number Diff line number Diff line change
@@ -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/docs 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'])
Expand All @@ -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')
Expand Down

0 comments on commit 00691cb

Please sign in to comment.