CroudTech / vue-quill

Quill component for vue
MIT License
121 stars 22 forks source link

Webpack "cheerio" compile error #27

Open mrspence opened 6 years ago

mrspence commented 6 years ago

I've looked at this issue #3 for help with this webpack compile error: image

I've tried some of the suggested steps: yarn install quill and yarn upgrade, but the error persists?

Note: Using laravel-mix to compile assets (uses webpack)

rwilkes152 commented 6 years ago

Matt, try adding this to your webpack.mix.js file:

mix.webpackConfig({
    resolve: {
        extensions: ['.js', '.es6','.json','.jsx','.vue']
    },

});