Layout scaffolding for Web apps.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

remix.config.js 396 B

123456789101112131415
  1. /** @type {import('@remix-run/dev').AppConfig} */
  2. module.exports = {
  3. ignoredRouteFiles: ["**/.*"],
  4. // appDirectory: "app",
  5. // assetsBuildDirectory: "public/build",
  6. // serverBuildPath: "build/index.js",
  7. // publicPath: "/build/",
  8. future: {
  9. v2_errorBoundary: true,
  10. v2_meta: true,
  11. v2_normalizeFormMethod: true,
  12. v2_routeConvention: true,
  13. unstable_tailwind: true,
  14. },
  15. };