/** @type {import('next').NextConfig} */ const nextConfig = { // 启用 webpack 配置 webpack: (config) => { // 添加 CSS 处理规则 config.module.rules.push({ test: /\.css$/, use: ['style-loader', 'css-loader'], }); return config; }, }; module.exports = nextConfig;