File tree 3 files changed +4
-4
lines changed
src/components/common/Toast/styles
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export { isType } from 'contentlayer/client'
4
4
5
5
// NOTE During development Contentlayer imports from `.mjs` files to improve HMR speeds.
6
6
// During (production) builds Contentlayer it imports from `.json` files to improve build performance.
7
- import { allPosts } from './Post/_index.mjs'
7
+ import allPosts from './Post/_index.json' assert { type : ' json ' }
8
8
9
9
export { allPosts }
10
10
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ node_modules
15
15
16
16
# production
17
17
/build
18
-
18
+ / dist
19
19
# misc
20
20
.idea
21
21
.DS_Store
Original file line number Diff line number Diff line change 1
1
import { style } from '@vanilla-extract/css' ;
2
2
import { recipe } from '@vanilla-extract/recipes' ;
3
3
4
+ import { bpStyle } from '@/styles/responsive.css' ;
4
5
import { vars } from '@/styles/vars.css' ;
5
6
6
- import { bpStyle } from './../../../styles/responsive.css' ;
7
- import { toastRoot } from './ToastRoot.css' ;
7
+ import { toastRoot } from './toastRoot.css' ;
8
8
import { toastHeight , toastWidth , viewportPadding } from './vars.css' ;
9
9
10
10
const toastViewport = recipe ( {
You can’t perform that action at this time.
0 commit comments