mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
|
const { buildStaticStandalone } = require('../lib/core/dist/server/build-static');
|
||
|
|
||
|
const options = {
|
||
|
managerOnly: true,
|
||
|
outputDir: './lib/core/prebuilt',
|
||
|
configDir: './scripts/build-manager-config',
|
||
|
};
|
||
|
|
||
|
process.env.NODE_ENV = 'production';
|
||
|
|
||
|
buildStaticStandalone(options);
|