I created new project with vue-cli and to use global scss files in my projects to apply global styles. Also to use font-families without importing scss file in every component where to use it
I found lots of solutions, but none of them help me. I’m new with webpack, so it is hard to understand what exactly goes wrong.
I install loader npm install sass-loader node-sass –save-dev and try to do lots of things with webpack
webpack.config.js
var path = require(‘path’)
var webpack = require(‘webpack’)
module.exports = {
entry: ‘./src/main.js’,
output: {
path: path.resolve(__dirname, ‘./dist’),
publicPath: ‘/dist/‘,
filename: ‘build.js’
},
module: {
rules: [
{
test: /\.css$/,
use: [
‘vue-style-loader’,
‘css-loader’
],
},
{
test: /\.scss$/,
use: [
‘vue-style-loader’,
‘css-loader’,
‘sass-loader’
],
},
{
test: /\.sass$/,
use: [
‘vue-style-loader’,
‘css-loader’,
‘sass-loader?indentedSyntax’
],
},
{
test: /\.vue$/,
loader: ‘vue-loader’,
options: {
loaders: {
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the “scss” and “sass” values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this necessary.
‘scss’: [
‘vue-style-loader’,
‘css-loader’,
‘sass-loader’
],
‘sass’: [
‘vue-style-loader’,
‘css-loader’,
‘sass-loader?indentedSyntax’
]
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: ‘babel-loader’,
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: ‘file-loader’,
options: {
name: ‘[name].[ext]?[hash]‘
}
}
]
},
resolve: {
alias: {
‘vue$’: ‘vue/dist/vue.esm.js’
},
extensions: [‘*‘, ‘.js’, ‘.vue’, ‘.json’]
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: ‘#eval-source-map’
}
if (process.env.NODE_ENV === ‘production’) {
module.exports.devtool = ‘#source-map’
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
‘process.env’: {
NODE_ENV: ‘“production”‘
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
}
src/assets/scss/fonts.scss
@font-face {
font-family: “SuisseIntl”;
src: url(“../fonts/SuisseIntl.woff”) format(“woff”);
}
@font-face {
font-family: “SuisseIntl-Light”;
src: url(“../fonts/SuisseIntl-Light.woff”) format(“woff”);
}
@font-face {
font-family: “SuisseIntl-SemiBold”;
src: url(“../fonts/SuisseIntl-SemiBold.woff”) format(“woff”);
}
$body-bg: red;
to be able to use font families in style tag inside every component and to be able to import scss files to component like this@import ‘../assets/scss/fonts’; , but now this cause error.
Can someone help me, please? What should I do to make it work?
Solution :
To use scss in components, make sure you have both sass-loader and node-sass installed as dev dependencies. This will allow you to use scss styling in components with:
<style lang=”scss”>
</style>
If you want to include some actual styling (something like the fonts that creates actual styling lines in css), create a scss file and include it in the top-most vue.js file (by default something like App.vue).
@import “./some/relative/path/to/your/scss/file.scss”;
If you want to include variables, functions or mixins in every component without explicitly having to define the import, make a scss file that serves as the entry point for such configuration, e.g. /scss/config.scss. Make sure that you do not output ANY css rules in this file, because these css rules would be duplicated many times for each component. Instead use the file I mentioned before and import the configuration in there as well.
Then, go to the vue.config.js file and add the following to the object:
css: {
loaderOptions: {
sass: {
data: `
@import “@/scss/config.scss”;
`
}
}
}
This will automatically load the config file. If you are still using the old structure, you can get the same behaviour by adding a data option to the own sass-loader:
{
test: /\.scss$/,
use: [
‘vue-style-loader’,
‘css-loader’,
{
loader: ‘sass-loader’,
options: {
data: ‘@import “config”;’,
includePaths: [
path.join(__dirname, ‘src/scss’) // Or however else you get to the scss folder
]
}
}
],
},