/* * Copyright 2025 Commonwealth Scientific and Industrial Research * Organisation (CSIRO) ABN 41 687 119 230. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { defineConfig } from 'vite'; // @ts-ignore import { version } from './package.json'; // This Vite config is for storybook usage only. // https://vitejs.dev/config/ export default defineConfig({ define: { 'import.meta.env.VITE_RENDERER_VERSION': JSON.stringify(version ?? 'unspecified'), // This triggers adding 'play' functions to stories for testing when running in CI environments, otherwise they are not added. // The reason why we do this is because Storybook forces autoplaying of stories when they have a 'play' function, which disrupts UX when browsing stories. // See https://github.com/storybookjs/storybook/discussions/25011 'import.meta.env.VITE_CI': JSON.stringify(process.env.CI ?? 'false'), } });