Fix: Format entire frontend properly

This commit is contained in:
Daniel Hougaard
2024-03-18 15:55:01 +01:00
parent db0ba4be10
commit b7b43858f6

View File

@@ -1,28 +1,28 @@
const path = require('path'); const path = require("path");
module.exports = { module.exports = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'], stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: [ addons: [
'@storybook/addon-links', "@storybook/addon-links",
'@storybook/addon-essentials', "@storybook/addon-essentials",
'@storybook/addon-interactions', "@storybook/addon-interactions",
'storybook-dark-mode', "storybook-dark-mode",
{ {
name: '@storybook/addon-styling', name: "@storybook/addon-styling",
options: { options: {
postCss: { postCss: {
implementation: require('postcss') implementation: require("postcss")
} }
} }
} }
], ],
framework: { framework: {
name: '@storybook/nextjs', name: "@storybook/nextjs",
options: {} options: {}
}, },
core: { core: {
disableTelemetry: true disableTelemetry: true
}, },
docs: { docs: {
autodocs: 'tag' autodocs: "tag"
} }
}; };