Skip to content

Commit 546264e

Browse files
committed
fix(vuetify): output css file
1 parent 448df95 commit 546264e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/src/guide/getting-started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Then you need to register `vue-js-cron/vuetify` with `Vue.use()`
2424

2525
```js
2626
import cronVuetify from '@vue-js-cron/vuetify'
27+
import '@vue-js-cron/vuetify/dist/vuetify.css'
2728
Vue.use(cronVuetify)
2829
```
2930

vuetify/build/rollup.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ export default {
99
exports: 'named',
1010
},
1111
plugins: [
12-
css(),
12+
css({
13+
output: 'vuetify.css',
14+
}),
1315
vue({
1416
css: false, // Dynamically inject css as a <style> tag
1517
compileTemplate: true, // Explicitly convert template to render function

0 commit comments

Comments
 (0)