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 0ee25b9 commit 402d391Copy full SHA for 402d391
server/server.js
@@ -130,11 +130,11 @@ if (process.env.BASIC_USERNAME && process.env.BASIC_PASSWORD) {
130
app.use(
131
'/.well-known/apple-developer-merchantid-domain-association',
132
(req, res, next) => {
133
- const rootPath = path.resolve(__dirname, '../public/.well-known');
+ const rootPath = path.join(__dirname, '../public/.well-known');
134
const fileName = 'apple-developer-merchantid-domain-association';
135
136
- console.log('rootPath: ', rootPath);
137
- console.log('fileName: ', fileName);
+ console.log('rootPath 2: ', rootPath);
+ console.log('fileName 2: ', fileName);
138
139
res.setHeader('Content-Type', 'text/plain');
140
0 commit comments