15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
|
|
import { CustomProjectConfig } from 'lost-pixel';
|
||
|
|
|
||
|
|
export const config: CustomProjectConfig = {
|
||
|
|
storybookShots: {
|
||
|
|
storybookUrl: './storybook-static',
|
||
|
|
},
|
||
|
|
lostPixelProjectId: 'veza-visual',
|
||
|
|
generateOnly: true,
|
||
|
|
failOnDifference: true,
|
||
|
|
threshold: 0.01,
|
||
|
|
imagePathBaseline: '.lostpixel/baselines',
|
||
|
|
imagePathCurrent: '.lostpixel/current',
|
||
|
|
imagePathDifference: '.lostpixel/difference',
|
||
|
|
};
|