7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['@meshitrack/shared'],
|
|
};
|
|
|
|
export default nextConfig;
|