forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bud.config.js
45 lines (40 loc) · 989 Bytes
/
bud.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @typedef {import('@roots/bud').Bud} Bud
*
* @param {Bud} app
*/
module.exports = (app) =>
app
/**
* Application entrypoints
*
* Paths are relative to your resources directory
*/
.entry({
app: ['scripts/app.js', 'styles/app.css'],
editor: ['scripts/editor.js', 'styles/editor.css'],
})
/**
* These files should be processed as part of the build
* even if they are not explicitly imported in application assets.
*/
.assets([app.path('src', 'images')])
/**
* These files will trigger a full page reload
* when modified.
*/
.watch([
'tailwind.config.js',
'resources/views/**/*.blade.php',
'app/View/**/*.php',
])
/**
* Target URL to be proxied by the dev server.
*
* This is your local dev server.
*/
.proxy('http://example.test')
/**
* Public path of application assets
*/
.setPublicPath('/app/themes/sage/public/');