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