Skip to content

Commit 7cb2521

Browse files
Clarify CSS import path
Based on #185, updated the paths to make it more clear that you have to directly import from the `node_modules` folder.
1 parent f877671 commit 7cb2521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ Here's a minimal application example for an empty calendar, styled with the defa
129129
<script>
130130
import { CalendarView, CalendarViewHeader } from "vue-simple-calendar"
131131

132-
import "vue-simple-calendar/dist/style.css"
132+
import "..relative-path-to-node_modules/vue-simple-calendar/dist/style.css"
133133
// The next two lines are optional themes
134-
import "vue-simple-calendar/static/css/default.css"
135-
import "vue-simple-calendar/static/css/holidays-us.css"
134+
import "..relative-path-to-node_modules/vue-simple-calendar/static/css/default.css"
135+
import "..relative-path-to-node_modules/vue-simple-calendar/static/css/holidays-us.css"
136136

137137
export default {
138138
name: 'app',

0 commit comments

Comments
 (0)