-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-default.yml
35 lines (32 loc) · 1019 Bytes
/
config-default.yml
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
# Browsersync config
BROWSERSYNC:
# URL of local development server goes here (ex. http://localsite.dev)
url: "http://local.wordpress.test"
# Autoprefixer will make sure your CSS works with these browsers
COMPATIBILITY:
- "last 2 versions"
- "ie >= 9"
- "ios >= 7"
# Gulp will reference these paths when it copies files
PATHS:
# Path to dist folder
dist: "dist"
# Paths to static assets that aren't images, CSS, or JavaScript
assets:
- "src/assets/**/*"
- "!src/assets/{img,js,scss}/**/*"
# Paths to Sass libraries, which can then be loaded with @import
sass:
- "node_modules/foundation-sites/scss"
- "node_modules/motion-ui/src"
- "node_modules/motion-ui/src"
# Paths to SCSS and JavaScript entry points
entries:
scss:
- "src/assets/scss/app.scss"
- "src/assets/scss/admin.scss"
js:
- "src/assets/js/app.js"
- "src/assets/js/admin.js"
# Set to true if you want static asset revisioning, helpful for cache busting
REVISIONING: false