File tree Expand file tree Collapse file tree 3 files changed +8
-19
lines changed
packages/e2e-tests/test-applications/create-remix-app Expand file tree Collapse file tree 3 files changed +8
-19
lines changed Original file line number Diff line number Diff line change 1
1
/** @type {import('eslint').Linter.Config } */
2
2
module . exports = {
3
- extends : [ " @remix-run/eslint-config" , " @remix-run/eslint-config/node" ] ,
3
+ extends : [ ' @remix-run/eslint-config' , ' @remix-run/eslint-config/node' ] ,
4
4
} ;
Original file line number Diff line number Diff line change 1
- import type { V2_MetaFunction } from " @remix-run/node" ;
1
+ import type { V2_MetaFunction } from ' @remix-run/node' ;
2
2
3
3
export const meta : V2_MetaFunction = ( ) => {
4
- return [
5
- { title : "New Remix App" } ,
6
- { name : "description" , content : "Welcome to Remix!" } ,
7
- ] ;
4
+ return [ { title : 'New Remix App' } , { name : 'description' , content : 'Welcome to Remix!' } ] ;
8
5
} ;
9
6
10
7
export default function Index ( ) {
11
8
return (
12
- < div style = { { fontFamily : " system-ui, sans-serif" , lineHeight : " 1.8" } } >
9
+ < div style = { { fontFamily : ' system-ui, sans-serif' , lineHeight : ' 1.8' } } >
13
10
< h1 > Welcome to Remix</ h1 >
14
11
< ul >
15
12
< li >
16
- < a
17
- target = "_blank"
18
- href = "https://remix.run/tutorials/blog"
19
- rel = "noreferrer"
20
- >
13
+ < a target = "_blank" href = "https://remix.run/tutorials/blog" rel = "noreferrer" >
21
14
15m Quickstart Blog Tutorial
22
15
</ a >
23
16
</ li >
24
17
< li >
25
- < a
26
- target = "_blank"
27
- href = "https://remix.run/tutorials/jokes"
28
- rel = "noreferrer"
29
- >
18
+ < a target = "_blank" href = "https://remix.run/tutorials/jokes" rel = "noreferrer" >
30
19
Deep Dive Jokes App Tutorial
31
20
</ a >
32
21
</ li >
Original file line number Diff line number Diff line change 1
1
/** @type {import('@remix-run/dev').AppConfig } */
2
2
module . exports = {
3
- ignoredRouteFiles : [ " **/.*" ] ,
3
+ ignoredRouteFiles : [ ' **/.*' ] ,
4
4
// appDirectory: "app",
5
5
// assetsBuildDirectory: "public/build",
6
6
// serverBuildPath: "build/index.js",
7
7
// publicPath: "/build/",
8
- serverModuleFormat : " cjs" ,
8
+ serverModuleFormat : ' cjs' ,
9
9
future : {
10
10
v2_errorBoundary : true ,
11
11
v2_meta : true ,
You can’t perform that action at this time.
0 commit comments