18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
// next.config.js
|
||
const nextConfig:NextConfig = {
|
||
// 移除自定义 webpack 配置,Next.js 已内置 TypeScript 支持
|
||
// 保留以下配置即可
|
||
experimental: {
|
||
externalDir: true, // 如果需要引用外部目录
|
||
},
|
||
webpack: (config) => {
|
||
// 保留其他必要配置
|
||
return config;
|
||
},
|
||
};
|
||
|
||
|
||
export default nextConfig;
|