Files
shorturl-analytics/next.config.js
2025-03-31 16:46:33 +08:00

15 lines
307 B
JavaScript

/** @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;