This commit introduces new configuration files including components.json, next.config.mjs, and package.json. Files have been set up with desired configurations and scripts. It adds a list of new dependencies required for the project into package.json and ensures version control with pnpm-lock.yaml file.
5 lines
92 B
JavaScript
5 lines
92 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {};
|
|
|
|
export default nextConfig;
|