mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
23 lines
495 B
JavaScript
23 lines
495 B
JavaScript
/* eslint-disable tsdoc/syntax */
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
export default {
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
cleanDistDir: true,
|
|
experimental: {
|
|
appDir: true,
|
|
outputFileTracingRoot: fileURLToPath(new URL('../../', import.meta.url)),
|
|
fallbackNodePolyfills: false,
|
|
},
|
|
images: {
|
|
dangerouslyAllowSVG: true,
|
|
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
|
|
},
|
|
};
|