I want to setup a webpack watch system in my project in the following structure
views/
-- assets/
-- src/
-- tools/
I changed the webpack and gulp config to match the new dir structure change ( demo1/assets )
but I'm getting errors like
```
Error: Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
Undefined mixin.
```
is there a way to set this up properly ?
It seems like there's a problem with Sass mixins in your webpack configuration. Check the appropriate Sass files to see if your mixin definitions have been imported appropriately. Make sure you are pointing to the right directories in retro bowl online your webpack configuration by checking the paths. Make sure that your sass-loader and all of its dependencies are current as well. Should you require any additional assistance, please do not hesitate to inform us.
Hi,
Temporarily exclude the watcher plugin from your webpack configuration. This will help determine if the issue is related to the watcher or if there's another underlying problem. You can comment out or remove the part related to the watcher plugin in your webpack.config.js.
Adjust the output path in your webpack.config.js to the "assets" folder. After making these changes, try running the webpack compilation again.