chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
/** @type {import('@remix-run/dev').AppConfig} */
|
||||
module.exports = {
|
||||
dev: {
|
||||
port: 8002,
|
||||
},
|
||||
// Tailwind v4 runs through PostCSS (@tailwindcss/postcss), not the built-in Remix integration
|
||||
tailwind: false,
|
||||
postcss: true,
|
||||
cacheDirectory: "./node_modules/.cache/remix",
|
||||
ignoredRouteFiles: ["**/.*"],
|
||||
serverModuleFormat: "cjs",
|
||||
serverDependenciesToBundle: [
|
||||
/^remix-utils.*/,
|
||||
/^@internal\//, // Bundle all internal packages
|
||||
/^@trigger\.dev\//, // Bundle all trigger packages
|
||||
"marked",
|
||||
"agentcrumbs",
|
||||
"axios",
|
||||
"p-limit",
|
||||
"p-map",
|
||||
"yocto-queue",
|
||||
"@unkey/cache",
|
||||
"@unkey/cache/stores",
|
||||
"emails",
|
||||
"highlight.run",
|
||||
"random-words",
|
||||
"superjson",
|
||||
"copy-anything",
|
||||
"is-what",
|
||||
"prismjs/components/prism-json",
|
||||
"prismjs/components/prism-typescript",
|
||||
"redlock",
|
||||
"parse-duration",
|
||||
"uncrypto",
|
||||
"std-env",
|
||||
"uuid",
|
||||
],
|
||||
browserNodeBuiltinsPolyfill: {
|
||||
modules: {
|
||||
path: true,
|
||||
os: true,
|
||||
crypto: true,
|
||||
http2: true,
|
||||
assert: true,
|
||||
util: true,
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user