This updates Autoprefixer to 7.1.1, and also moves the browser target list to package.json, in line with the recommendation made in this article (https://evilmartians.com/chronicles/autoprefixer-7-browserslist-2-released) from the developers of Autoprefixer and Browserslist.
19 lines
355 B
JSON
19 lines
355 B
JSON
{
|
|
"entry": {
|
|
"main": [
|
|
"./scripts/main.js",
|
|
"./styles/main.scss"
|
|
],
|
|
"customizer": [
|
|
"./scripts/customizer.js"
|
|
]
|
|
},
|
|
"publicPath": "/app/themes/sage",
|
|
"devUrl": "http://example.dev",
|
|
"proxyUrl": "http://localhost:3000",
|
|
"cacheBusting": "[name]_[hash:8]",
|
|
"watch": [
|
|
"{app,resources/views}/**/*.php"
|
|
]
|
|
}
|