I had this bs-config.js:
module.exports = {
server: {
middleware: {
1: apiProxy
}
}
};
And this separate one:
module.exports = {
server: [".", "dist"]
};
How can I join both configurations?
I had this bs-config.js:
module.exports = {
server: {
middleware: {
1: apiProxy
}
}
};
And this separate one:
module.exports = {
server: [".", "dist"]
};
How can I join both configurations?
Found it:
module.exports = {
server: {
middleware: {
1: apiProxy,
},
baseDir: [".", "dist"]
}
};