DEV Community

BENSIMON Raphaël
BENSIMON Raphaël

Posted on

How to add generic style in Vue Styleguidist

If you want import style into vue styleguidist build like you import global style in App.vue just edit your styleguid.config.js :

// styleguid.config.js 
const path = require('path')
module.exports = {
    require        : [
        path.join(__dirname, 'src/assets/styles/global.css')
    ]
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)