File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4
4
"flowtype/no-weak-types": 0,
5
5
"react-native/no-raw-text": 0,
6
6
"no-console": 1,
7
- "react/no-multi-comp": 0
7
+ "react/no-multi-comp": 0,
8
+ // Ignore certain webpack alias because it can't be resolved
9
+ "import/no-unresolved": [
10
+ 2,
11
+ { "ignore": ["^@theme", "^@docusaurus", "^@generated"] }
12
+ ]
8
13
}
9
14
}
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classnames from 'classnames' ;
3
3
import Layout from '@theme/Layout' ;
4
- import Link from '@docusaurus/Link' ;
5
4
import useDocusaurusContext from '@docusaurus/useDocusaurusContext' ;
6
- import useBaseUrl from '@docusaurus/useBaseUrl' ;
7
5
import styles from '../css/index.module.css' ;
8
6
import Feature from '../components/Feature' ;
9
7
@@ -48,7 +46,7 @@ export default function Home() {
48
46
49
47
return (
50
48
< Layout title = { `${ siteConfig . title } ` } description = { siteConfig . tagline } >
51
- < main className = "home-container" >
49
+ < main >
52
50
< div className = { classnames ( styles . container__inner ) } >
53
51
< img
54
52
src = { `${ siteConfig . baseUrl } img/owl.png` }
You can’t perform that action at this time.
0 commit comments