16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
distDir: '.next',
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
webpack: (config) => {
|
|
config.resolve.alias['@'] = require('path').resolve(__dirname, 'src');
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|
|
|