mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
CHANGE the dll express route to dev-server
This commit is contained in:
parent
4924083160
commit
3502befb4b
@ -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);
|
||||
|
@ -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]}`));
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user