Skip to content

Commit bb3ec4f

Browse files
committedMar 17, 2023
✅ Test(vanilla extract): file name fix
1 parent 8b82c44 commit bb3ec4f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.contentlayer/generated/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export { isType } from 'contentlayer/client'
44

55
// NOTE During development Contentlayer imports from `.mjs` files to improve HMR speeds.
66
// 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' }
88

99
export { allPosts }
1010

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ node_modules
1515

1616
# production
1717
/build
18-
18+
/dist
1919
# misc
2020
.idea
2121
.DS_Store

‎src/components/common/Toast/styles/toast.css.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { style } from '@vanilla-extract/css';
22
import { recipe } from '@vanilla-extract/recipes';
33

4+
import { bpStyle } from '@/styles/responsive.css';
45
import { vars } from '@/styles/vars.css';
56

6-
import { bpStyle } from './../../../styles/responsive.css';
7-
import { toastRoot } from './ToastRoot.css';
7+
import { toastRoot } from './toastRoot.css';
88
import { toastHeight, toastWidth, viewportPadding } from './vars.css';
99

1010
const toastViewport = recipe({

0 commit comments

Comments
 (0)
Please sign in to comment.