CHANGE the dll express route to dev-server

This commit is contained in:
Norbert de Langen 2018-11-28 12:04:10 +01:00
parent 4924083160
commit 3502befb4b
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 7 additions and 5 deletions

View File

@ -27,8 +27,6 @@ const cache = Cache({
ns: 'storybook', // Optional. A grouping namespace for items.
});
const dllPath = path.join(__dirname, '../../dll/storybook_ui_dll.js');
function getServer(app, options) {
if (!options.https) {
return app;
@ -143,8 +141,6 @@ export async function buildDevStandalone(options) {
const app = express();
const server = getServer(app, options);
app.use('/sb_dll', express.static(dllPath, { index: false }));
applyStatic(app, options);
const storybookMiddleware = await storybook(options);

View File

@ -13,6 +13,8 @@ import loadManagerConfig from './manager/manager-config';
let webpackResolve = () => {};
let webpackReject = () => {};
const dllPath = path.join(__dirname, '../../dll');
export const webpackValid = new Promise((resolve, reject) => {
webpackResolve = resolve;
webpackReject = reject;
@ -114,8 +116,12 @@ export default async function(options) {
response.set('Content-Type', 'text/html');
response.sendFile(path.join(`${outputDir}/index.html`));
});
router.get(/\/sb_dll\/(.+\.js)$/, (request, response) => {
response.set('Content-Type', 'text/javascript');
response.sendFile(path.join(`${dllPath}/${request.params[0]}`));
});
router.get(/(.+\.js)$/, (request, response) => {
response.set('Content-Type', 'text/javascript ');
response.set('Content-Type', 'text/javascript');
response.sendFile(path.join(`${outputDir}/${request.params[0]}`));
});