Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,7 @@ module.exports = {
],

framework: {
name: "@storybook/nextjs",
name: "@storybook/nextjs-vite",
options: {}
},

resolve: {
fallback: {
util: require.resolve("util")
}
}
};
13 changes: 8 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ const nextConfig = {
// // Story files and test files are type-checked separately
// ignoreBuildErrors: true,
// },
eslint: {
// ESLint is run separately in CI/CD
ignoreDuringBuilds: true,
},
// Enable source maps for debugging
// Note: eslint config removed - no longer supported in Next.js 16
// ESLint is run separately in CI/CD via npm run lint

// Turbopack configuration (empty config silences webpack/turbopack warning)
// Turbopack is the default bundler in Next.js 16
turbopack: {},

// Keep webpack config for production builds or when explicitly using webpack
webpack: (config, { dev }) => {
if (dev) {
config.devtool = 'source-map';
Expand Down
Loading
Loading