mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
```js
|
|
// .storybook/test-runner.js
|
|
|
|
module.exports = {
|
|
getHttpHeaders: async (url) => {
|
|
const token = url.includes('prod') ? 'XYZ' : 'ABC';
|
|
return {
|
|
Authorization: `Bearer ${token}`,
|
|
};
|
|
},
|
|
};
|
|
```
|