28 lines
544 B
JavaScript
28 lines
544 B
JavaScript
// A list of popular packages that cannot be bundled on the server.
|
|
export const EXTERNAL_PACKAGES = [
|
|
"@prisma/client",
|
|
"@sentry/nextjs",
|
|
"@sentry/node",
|
|
"autoprefixer",
|
|
"cypress",
|
|
"eslint",
|
|
"express",
|
|
"firebase-admin",
|
|
"jest",
|
|
"lodash",
|
|
"mongodb",
|
|
"next-mdx-remote",
|
|
"next-seo",
|
|
"postcss",
|
|
"prettier",
|
|
"prisma",
|
|
"rimraf",
|
|
"sharp",
|
|
"sqlite3",
|
|
"tailwindcss",
|
|
"ts-node",
|
|
"typescript",
|
|
"webpack",
|
|
];
|
|
|
|
//# sourceMappingURL=server-external-packages.js.map
|