ModuleBuildError: Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: Can't find stylesheet to import.
@import "~compass/css3";
I already installed compass and compass-mixins.
npm i compass and ``` npm i compass-mixins````
the dependencies are all updated well
"dependencies": {
"compass": "^0.1.1",
"compass-mixins-fixed": "^1.0.1"
}
and I also put some change in my webpack.mix.js just like the Laravel documentation
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.sass('resources/sass/christmasLand.scss', 'public/css');
I tried to import this
@import "~compass-mixins/lib/compass/css3";
and this
@import "compass/css3";
both doesn't change the error msg.
please help.