mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
remove the need the need to --copy-files with babel by moving the favicon
This commit is contained in:
parent
db69c741f9
commit
a51da8d0b4
@ -31,8 +31,7 @@
|
||||
},
|
||||
"files": [
|
||||
"dist/**/*",
|
||||
"dll/**/*",
|
||||
"types/**/*",
|
||||
"public/**/*",
|
||||
"*.js",
|
||||
"*.d.ts"
|
||||
],
|
||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
@ -48,7 +48,7 @@ export async function buildStaticStandalone(options: CLIOptions & LoadOptions &
|
||||
options.configDir = path.resolve(options.configDir);
|
||||
/* eslint-enable no-param-reassign */
|
||||
|
||||
const defaultFavIcon = require.resolve('./public/favicon.ico');
|
||||
const defaultFavIcon = require.resolve('@storybook/core-server/public/favicon.ico');
|
||||
|
||||
logger.info(chalk`=> Cleaning outputDir: {cyan ${options.outputDir}}`);
|
||||
if (options.outputDir === '/') {
|
||||
|
@ -9,7 +9,7 @@ import favicon from 'serve-favicon';
|
||||
|
||||
import dedent from 'ts-dedent';
|
||||
|
||||
const defaultFavIcon = require.resolve('../public/favicon.ico');
|
||||
const defaultFavIcon = require.resolve('@storybook/core-server/public/favicon.ico');
|
||||
|
||||
export async function useStatics(router: any, options: Options) {
|
||||
let hasCustomFavicon = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user