feature flags

This commit is contained in:
2026-01-07 22:05:53 +01:00
parent 1b63fa646c
commit 606b64cec7
530 changed files with 2092 additions and 2943 deletions

View File

@@ -76,6 +76,18 @@ const nextConfig = {
type: 'asset/resource',
});
// Add path aliases to fix build issues
config.resolve.alias = {
...config.resolve.alias,
'@': path.resolve(__dirname, '.'),
'@lib': path.resolve(__dirname, 'lib'),
'@hooks': path.resolve(__dirname, 'hooks'),
'@components': path.resolve(__dirname, 'components'),
'@app': path.resolve(__dirname, 'app'),
'@templates': path.resolve(__dirname, 'templates'),
'@types': path.resolve(__dirname, 'types'),
};
return config;
},
};