Hi there,
This is probably something I’m missing but its freaking me out.
This is my config.json:
{
"entry": {
"abovethefolder": [
"./styles/abovethefolder.scss"
],
"main": [
"./scripts/main.js",
"./styles/main.scss"
]
},
"watch": [
"templates/**/*.php",
"src/**/*.php"
],
....
}
However, when I run npm run build 3 js files are created: main.js, abovethefolder.js, files.js.
All 3 files start with the content of files.js which seem to be a list of some of the files I’ve imported from my templates.
My question is, is this supposed to be like this? If yes, is there a reason?