0

Can anybody help me in using susy with laravel project?

I have installed all the dependencies using npm install and followed these steps to install susy.

this is my webpack.mix.js file

mix.js('resources/assets/js/app.js', 'public/js')
   .sass('resources/assets/sass/app.scss', 'public/css')
   .webpackConfig({
       resolve: {
           modules:[
               loaders: [
                   {
                     test: /\.scss$/,
                     loader: 'style!css!sass'
                   }
               ]
           ]           
       }
   });

I am getting this error when I run npm run watch

susy error

amansoni211
  • 889
  • 2
  • 13
  • 30
  • 1
    What version of Susy do you have installed. Note that [Susy3 does not include any mixins](http://oddbird.net/2017/06/28/susy3/) – so this error could be caused by upgrading Susy, even if the laravel setup is correct. – Miriam Suzanne Aug 25 '17 at 17:42
  • Yes. I intsalled susy3 and did not know about the updates. Thanks for your help! – amansoni211 Aug 28 '17 at 07:57

0 Answers0