1
1
/**
2
2
* Compiler configuration
3
3
*
4
- * @see {@link https://roots.io/docs/ sage sage documentation }
5
- * @see {@link https://bud.js.org/guides/configure bud.js configuration guide }
4
+ * @see {@link https://roots.io/sage/docs sage documentation }
5
+ * @see {@link https://bud.js.org/learn/config bud.js configuration guide }
6
6
*
7
7
* @type {import('@roots/bud').Config }
8
8
*/
9
9
export default async ( app ) => {
10
10
/**
11
11
* Application assets & entrypoints
12
12
*
13
- * @see {@link https://bud.js.org/docs /bud.entry }
14
- * @see {@link https://bud.js.org/docs /bud.assets }
13
+ * @see {@link https://bud.js.org/reference /bud.entry }
14
+ * @see {@link https://bud.js.org/reference /bud.assets }
15
15
*/
16
16
app
17
17
. entry ( 'app' , [ '@scripts/app' , '@styles/app' ] )
@@ -21,16 +21,16 @@ export default async (app) => {
21
21
/**
22
22
* Set public path
23
23
*
24
- * @see {@link https://bud.js.org/docs /bud.setPublicPath }
24
+ * @see {@link https://bud.js.org/reference /bud.setPublicPath }
25
25
*/
26
26
app . setPublicPath ( '/app/themes/sage/public/' ) ;
27
27
28
28
/**
29
29
* Development server settings
30
30
*
31
- * @see {@link https://bud.js.org/docs /bud.setUrl }
32
- * @see {@link https://bud.js.org/docs /bud.setProxyUrl }
33
- * @see {@link https://bud.js.org/docs /bud.watch }
31
+ * @see {@link https://bud.js.org/reference /bud.setUrl }
32
+ * @see {@link https://bud.js.org/reference /bud.setProxyUrl }
33
+ * @see {@link https://bud.js.org/reference /bud.watch }
34
34
*/
35
35
app
36
36
. setUrl ( 'http://localhost:3000' )
0 commit comments