13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import path from "node:path";
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
outputFileTracingRoot: process.cwd(),
|
|
webpack(config) {
|
|
config.resolve.alias["@"] = path.resolve(process.cwd());
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|