[Vuejs]-You may need an appropriate loader, when upgrading to vue-loader v15

0👍

This is my current working setup now:

module: {
    rules: [
        {
            test: /\.styl(us)?$/,
            use: [
                'vue-style-loader',
                'css-loader',
                'stylus-loader'
            ]
        }
    ]
},
plugins: [
    new VueLoaderPlugin()
]

Leave a comment