We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3172a9a commit b44fde7Copy full SHA for b44fde7
src/cli/serve/serve.js
@@ -110,9 +110,8 @@ function isServerlessCapableDistribution() {
110
* @param {'push' | 'unshift'} method
111
*/
112
function maybeAddConfig(name, configs, method) {
113
- const path = resolve(getConfigDirectory(), name);
114
if (configFileExists(name)) {
115
- configs[method](path);
+ configs[method](resolve(getConfigDirectory(), name));
116
}
117
118
0 commit comments