You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// eslint-disable-next-line
import variables from 'sass-extract-loader!@/runtime.scss'
export default variables
Breaks with:
Module build failed: Error: Can not determine imported file for url '../../../node_modules/bulma/sass/utilities/initial-variables.sass.scss' imported in /srv/http/catchall-webapps.localdomain/project-frontend/src/runtime.scss
at options.error (/srv/http/catchall-webapps.localdomain/project-frontend/node_modules/node-sass/lib/index.js:291:26)
@ ./src/sass-variables.js 2:0-73
@ ./src/main.js
@ multi (webpack)-dev-server/client?http://0.0.0.0:8090 webpack/hot/dev-server ./src/main.js
Main error being the path:
initial-variables.sass.scss
^^^^^
There seems to be .scss extension enforced for @import calls at all costs if the main import was .scss. Likewise, if the main import is .sass, all calls to @import will be enforced with .sass.
The text was updated successfully, but these errors were encountered:
runtime.scss (SCSS):
sass-variables.js
Breaks with:
Main error being the path:
There seems to be
.scss
extension enforced for@import
calls at all costs if the main import was.scss
. Likewise, if the main import is.sass
, all calls to@import
will be enforced with.sass
.The text was updated successfully, but these errors were encountered: