
- Removed notes - Updated readme - DB - Updated initial db schema - Updated db seed - Created source, station, and tag models - Libs - Create content source importer - UI - Added content source UI & routes - Updated page layout - Created <Breadcrumbs> component
17 lines
459 B
JavaScript
17 lines
459 B
JavaScript
/** @type {import("@remix-run/dev").AppConfig} */
|
|
module.exports = {
|
|
cacheDirectory: "./node_modules/.cache/remix",
|
|
future: {
|
|
v2_errorBoundary: true,
|
|
v2_meta: true,
|
|
v2_normalizeFormMethod: true,
|
|
v2_routeConvention: true
|
|
},
|
|
ignoredRouteFiles: ["**/.*", "**/*.test.{js,jsx,ts,tsx}"],
|
|
serverModuleFormat: "cjs",
|
|
postcss: true,
|
|
tailwind: true,
|
|
sourcemap: true,
|
|
serverDependenciesToBundle: []
|
|
};
|