13 lines
342 B
JavaScript
13 lines
342 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const path = require('path');
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// swcMinify: true, // Removed for compatibility with current Next.js version
|
|
webpack: (config) => {
|
|
config.resolve.alias['@'] = path.resolve(__dirname, 'src');
|
|
return config;
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|