New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@prisma/nextjs-monorepo-workaround-plugin

Package Overview
Dependencies
Maintainers
3
Versions
3675
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prisma/nextjs-monorepo-workaround-plugin

Ensures that your Prisma files are copied

6.5.0
latest
Source
npm
Version published
Weekly downloads
45K
-1.38%
Maintainers
3
Weekly downloads
 
Created
Source

Prisma Webpack Plugin

Ensures that your Prisma files are copied.

Next.js

const { PrismaPlugin } = require('@prisma/nextjs-monorepo-workaround-plugin')

module.exports = {
  webpack: (config, { isServer }) => {
    if (isServer) {
      config.plugins = [...config.plugins, new PrismaPlugin()]
    }

    return config
  },
}

Webpack

const { PrismaPlugin } = require('@prisma/nextjs-monorepo-workaround-plugin')

module.exports = {
  plugins: [new PrismaPlugin()],
}

Keywords

prisma

FAQs

Package last updated on 11 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts