mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
21 lines
356 B
JavaScript
21 lines
356 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
export default {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
cleanDistDir: true,
|
|
experimental: {
|
|
images: {
|
|
allowFutureImage: true,
|
|
},
|
|
},
|
|
images: {
|
|
dangerouslyAllowSVG: true,
|
|
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
|
|
},
|
|
};
|