Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
talha_silentcontent
/
Filename :
next.config.js
back
Copy
/** @type {import('next').NextConfig} */ const path = require('path'); const nextConfig = {} module.exports = { // Additional configuration for file loading // output: { // path: path.resolve(__dirname, 'static'), // }, typescript: { // !! WARN !! // Dangerously allow production builds to successfully complete even if // your project has type errors. // !! WARN !! ignoreBuildErrors: true, }, webpack: (config, options) => { // Rule for handling PDF files config.module.rules.push({ test: /\.pdf$/, type: 'asset/resource', generator: { filename: 'static/[hash][ext]', }, }); // Any additional Webpack configuration can go here return config; }, };