mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
16 lines
547 B
JavaScript
16 lines
547 B
JavaScript
/**
|
|
* @type {import('@remix-run/dev').AppConfig}
|
|
*/
|
|
module.exports = {
|
|
serverBuildTarget: "vercel",
|
|
// When running locally in development mode, we use the built in remix
|
|
// server. This does not understand the vercel lambda module format,
|
|
// so we default back to the standard build output.
|
|
server: process.env.NODE_ENV === "development" ? undefined : "./server.js",
|
|
ignoredRouteFiles: [".*"],
|
|
// appDirectory: "app",
|
|
// assetsBuildDirectory: "public/build",
|
|
// serverBuildPath: "api/index.js",
|
|
// publicPath: "/build/",
|
|
};
|