18 lines
619 B
JavaScript
18 lines
619 B
JavaScript
/** @type {import('@remix-run/dev').AppConfig} */
|
|
module.exports = {
|
|
// 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: ['**/.*'],
|
|
|
|
future: {
|
|
v2_routeConvention: true,
|
|
unstable_tailwind: true,
|
|
},
|
|
// appDirectory: "app",
|
|
// assetsBuildDirectory: "public/build",
|
|
serverBuildPath: 'api/index.js',
|
|
// publicPath: "/build/",
|
|
};
|