24 lines
589 B
TypeScript
24 lines
589 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: [
|
|
'playwright-extra',
|
|
'puppeteer-extra-plugin-stealth',
|
|
'puppeteer-extra-plugin',
|
|
], webpack: (config) => {
|
|
config.module.rules.push({
|
|
test: /\.(md|txt)$/i,
|
|
type: 'asset/source', // 让这些文件作为纯文本注入
|
|
});
|
|
return config;
|
|
}, turbopack: {
|
|
rules: {
|
|
'*.md': { loaders: ['raw-loader'], as: '*.js' },
|
|
'*.txt': { loaders: ['raw-loader'], as: '*.js' },
|
|
},
|
|
},
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|