Skip to content

Commit c5d3532

Browse files
committed
chore: update Next.js configuration and dependencies
- Refactor next.config.js to include explicit experimental features and improve image optimization settings. - Add new dependencies for autoprefixer, postcss, and tailwindcss in package.json and package-lock.json. - Update TypeScript configuration to set baseUrl for module resolution. - Ensure compatibility with the latest versions of dependencies.
1 parent be0fa0a commit c5d3532

File tree

4 files changed

+16
-106
lines changed

4 files changed

+16
-106
lines changed

next.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22

33
const nextConfig = {
44
output: 'export',
5-
images: { unoptimized: true },
5+
images: {
6+
unoptimized: true,
7+
},
68
trailingSlash: true,
79
transpilePackages: ['@tabler/icons-react'],
10+
experimental: {
11+
// Explicitly define experimental features to prevent conflicts
12+
},
813
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
914
// Fix for module resolution
1015
config.resolve.fallback = {

0 commit comments

Comments
 (0)