UNPKG

adam-java-analytics

Version:

Java code analyzer for detecting package dependencies and circular references

14 lines (11 loc) 271 B
const path = require("path") /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, webpack: (config) => { config.resolve.alias["@"] = path.resolve(__dirname) return config }, } module.exports = nextConfig