mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
FIX location of dll
This commit is contained in:
parent
b198e08271
commit
ce9a74845c
@ -27,6 +27,8 @@ 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;
|
||||
@ -141,13 +143,7 @@ export async function buildDevStandalone(options) {
|
||||
const app = express();
|
||||
const server = getServer(app, options);
|
||||
|
||||
app.use(
|
||||
'/sb_dll',
|
||||
express.static(
|
||||
path.join(require.resolve('@storybook/ui/package.json').replace('package.json', ''), 'dll'),
|
||||
{ index: false }
|
||||
)
|
||||
);
|
||||
app.use('/sb_dll', express.static(dllPath, { index: false }));
|
||||
|
||||
applyStatic(app, options);
|
||||
|
||||
|
@ -17,9 +17,7 @@ export function buildStaticStandalone(options) {
|
||||
const configType = 'PRODUCTION';
|
||||
const outputDir = path.join(process.cwd(), options.outputDir);
|
||||
|
||||
const dllPath = require
|
||||
.resolve('@storybook/ui/package.json')
|
||||
.replace('/package.json', '/dll/storybook_ui_dll.js');
|
||||
const dllPath = path.join(__dirname, '../../dll/storybook_ui_dll.js');
|
||||
|
||||
// create output directory if not exists
|
||||
shelljs.mkdir('-p', outputDir);
|
||||
|
Loading…
x
Reference in New Issue
Block a user