fix: config file lint error (#250)
This commit is contained in:
@@ -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.
|
||||
|
Reference in New Issue
Block a user