File size: 328 Bytes
c1fc8d2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/** @type {import('@remix-run/dev').AppConfig} */
module.exports = {
ignoredRouteFiles: ["**/.*"],
serverModuleFormat: "cjs",
serverPlatform: "node",
serverMinify: false,
future: {
v2_errorBoundary: true,
v2_meta: true,
v2_normalizeFormMethod: true,
v2_routeConvention: true,
v2_dev: true,
},
};
|