File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- import '.. /styles/global.css'
1+ import '@ /styles/global.css' ;
22
33export default function MyApp ( { Component, pageProps } ) {
44 return < Component { ...pageProps } />
Original file line number Diff line number Diff line change 11import { useState } from 'react' ;
22import Head from 'next/head' ;
33
4- import TextWidget from '.. /components/TextWidget'
5- import TimeWidget from '.. /components/TimeWidget'
4+ import TextWidget from '@ /components/TextWidget' ;
5+ import TimeWidget from '@ /components/TimeWidget' ;
66
77const IndexPage = ( ) => {
88 const text = `オレオレOBSウィジュエットの整理` ;
Original file line number Diff line number Diff line change 1616 "moduleResolution" : " node" ,
1717 "resolveJsonModule" : true ,
1818 "isolatedModules" : true ,
19- "jsx" : " preserve"
19+ "jsx" : " preserve" ,
20+ "baseUrl" : " ." ,
21+ "paths" : {
22+ "@/*" : [" *" ]
23+ }
2024 },
2125 "include" : [
2226 " next-env.d.ts" ,
You can’t perform that action at this time.
0 commit comments