mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-19 05:02:40 +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);
|