Skip to content

Commit

Permalink
Disable telemetry in examples (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS authored May 26, 2022
1 parent 21f3c20 commit e9da98e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/lit-ts/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ module.exports = {
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
framework: '@storybook/web-components',
features: {
Expand Down
2 changes: 2 additions & 0 deletions examples/react-18/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ module.exports = {
addons: ['@storybook/addon-a11y', '@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
features: {
storyStoreV7: true,
Expand Down
2 changes: 2 additions & 0 deletions examples/react-ts/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ const config: StorybookViteConfig = {
addons: ['@storybook/addon-a11y', '@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
features: {
storyStoreV7: true,
Expand Down
2 changes: 2 additions & 0 deletions examples/react/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ module.exports = {
addons: ['@storybook/addon-a11y', '@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
features: {
storyStoreV7: false,
Expand Down
2 changes: 2 additions & 0 deletions examples/svelte/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ module.exports = {
addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@storybook/addon-svelte-csf'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
features: {
// On-demand store does not work for .svelte stories, only CSF.
Expand Down
2 changes: 2 additions & 0 deletions examples/vue/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ module.exports = {
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
async viteFinal(config, { configType }) {
// customize the Vite config here
Expand Down
2 changes: 2 additions & 0 deletions examples/workspaces/packages/catalog/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ module.exports = {
addons: ['@storybook/addon-a11y', '@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
// we don't want to muck up the data when we're working on the builder
disableTelemetry: true,
},
features: {
storyStoreV7: true,
Expand Down

0 comments on commit e9da98e

Please sign in to comment.