fix: config file lint error (#250)

This commit is contained in:
crazywoola
2023-05-30 10:32:26 +08:00
committed by GitHub
parent bad3b14438
commit 8358d0abfa
7 changed files with 26 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
const { withSentryConfig } = require("@sentry/nextjs")
const { withSentryConfig } = require('@sentry/nextjs')
const withMDX = require('@next/mdx')({
extension: /\.mdx?$/,
@@ -32,7 +32,7 @@ const nextConfig = {
ignoreBuildErrors: true,
},
sentry: {
hideSourceMaps: true
hideSourceMaps: true,
},
async redirects() {
return [
@@ -47,12 +47,12 @@ const nextConfig = {
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup
const sentryWebpackPluginOptions = {
org: "perfectworld",
project: "javascript-nextjs",
org: 'perfectworld',
project: 'javascript-nextjs',
silent: true, // Suppresses all logs
sourcemaps: {
assets: "./**",
ignore: ["./node_modules/**"],
assets: './**',
ignore: ['./node_modules/**'],
},
// https://github.com/getsentry/sentry-webpack-plugin#options.