Skip to content

Commit

Permalink
disable webpack plugin for client and server
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikmonsen committed May 6, 2024
1 parent 7031be4 commit 53c838f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ import {withSentryConfig} from "@sentry/nextjs";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
basePath: "/hugin"
basePath: "/hugin",
sentry: {
disableServerWebpackPlugin: true,
disableClientWebpackPlugin: true,
},
};

export default withSentryConfig(nextConfig, {
Expand Down
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import styles from './page.module.css';

export default function Home() {

return (
<main className={styles.main}>
<div className={styles.description}>
Expand Down

0 comments on commit 53c838f

Please sign in to comment.