additionalData and :export scss not working
See original GitHub issueVersion
5.0.0-beta.7
Environment info
System:
OS: Windows 10 10.0.19043
CPU: (16) x64 AMD Ryzen 7 2700X Eight-Core Processor
Binaries:
Node: 16.12.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.17 - ~\AppData\Roaming\npm\yarn.CMD
npm: 8.1.0 - C:\Program Files\nodejs\npm.CMD
Browsers:
Chrome: Not Found
Edge: Spartan (44.19041.1266.0), Chromium (95.0.1020.40)
npmPackages:
@vue/babel-helper-vue-jsx-merge-props: 1.2.1
@vue/babel-helper-vue-transform-on: 1.0.2
@vue/babel-plugin-jsx: 1.1.1
@vue/babel-plugin-transform-vue-jsx: 1.2.1
@vue/babel-preset-app: 5.0.0-beta.7
@vue/babel-preset-jsx: 1.2.4
@vue/babel-sugar-composition-api-inject-h: 1.2.1
@vue/babel-sugar-composition-api-render-instance: 1.2.4
@vue/babel-sugar-functional-vue: 1.2.2
@vue/babel-sugar-inject-h: 1.2.2
@vue/babel-sugar-v-model: 1.2.3
@vue/babel-sugar-v-on: 1.2.3
@vue/cli-overlay: 5.0.0-beta.7
@vue/cli-plugin-babel: ~5.0.0-beta.7 => 5.0.0-beta.7
@vue/cli-plugin-eslint: ~5.0.0-beta.7 => 5.0.0-beta.7
@vue/cli-plugin-router: ~5.0.0-beta.7 => 5.0.0-beta.7
@vue/cli-plugin-typescript: ~5.0.0-beta.7 => 5.0.0-beta.7
@vue/cli-plugin-vuex: 5.0.0-beta.7
@vue/cli-service: ~5.0.0-beta.7 => 5.0.0-beta.7
@vue/cli-shared-utils: 5.0.0-beta.7
@vue/compiler-core: 3.2.20
@vue/compiler-dom: 3.2.20
@vue/compiler-sfc: ^3.2.6 => 3.2.20
@vue/compiler-ssr: 3.2.20
@vue/component-compiler-utils: 3.3.0
@vue/devtools-api: 6.0.0-beta.19
@vue/eslint-config-prettier: ^6.0.0 => 6.0.0
@vue/eslint-config-typescript: ^7.0.0 => 7.0.0
@vue/reactivity: 3.2.20
@vue/ref-transform: 3.2.20
@vue/runtime-core: 3.2.20
@vue/runtime-dom: 3.2.20
@vue/server-renderer: 3.2.20
@vue/shared: 3.2.20
@vue/web-component-wrapper: 1.3.0
eslint-plugin-vue: ^7.2.0 => 7.20.0
typescript: ~4.1.5 => 4.1.6
vue: ^3.2.6 => 3.2.20
vue-class-component: ^8.0.0-0 => 8.0.0-rc.1
vue-eslint-parser: 7.11.0
vue-hot-reload-api: 2.3.4
vue-loader: 16.8.2 (15.9.8)
vue-remix-icons: ^1.1.1 => 1.1.1
vue-router: ^4.0.3 => 4.0.12
vue-style-loader: 4.1.3
vue-template-es2015-compiler: 1.9.1
npmGlobalPackages:
@vue/cli: Not Found
Steps to reproduce
Create a Vue project with Typescript and a vue.config.js
that looks like this:
module.exports = {
transpileDependencies: true,
css: {
loaderOptions: {
sass: {
additionalData: `@import "~@/assets/scss/style.scss";`,
},
},
},
};
What is expected?
Loading my style.scss
What is actually happening?
It does not load my style.scss
The only way to load my style.scss
file is by importing it into main.ts
. Also the :export
function in my scss file does not work. When I try to load something from :export
I get back undefined
.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7
Top Results From Across the Web
storybook vue sass additionalData not working - Stack Overflow
storybook/main.js looks like (following the guides): const path = require('path'); // Export a function. Accept the base config as the only ...
Read more >sass-loader - webpack - JS.ORG
This allows you to control the versions of all your dependencies, and to choose which Sass implementation to use. Note. We highly recommend...
Read more >Using Pre-Processors - Vue Loader
Sass. For example, to compile our <style> tag with Sass/SCSS: npm install -D sass-loader node-sass. In your webpack config: module.exports = { module: ......
Read more >SASS variables - Vuetify
If you have not installed Vuetify, check out the quick-start guide . ... This is required for custom SASS variables to work.
Read more >Automatically import SASS/SCSS into every Vue.js component
js (if you do not already have one); Add the following lines: module.exports = { css: { loaderOptions: { sass: { additionalData: `@ ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
css.modules and requireModuleExtension is removed in vuecli5, and you can resolve it like this: To import CSS or other pre-processor files as CSS Modules in JavaScript, the filename should end with
.module(s).(css|less|sass|scss|styl)
or change config like thiscss-loader