简体   繁体   中英

SassError: File to import not found or unreadable: style.scss

I am trying to setup a vuejs project from scratch. I am getting this error when I import "style.scss" in the component. Here's the component ( Login.vue ) where I import the style.scss

<template>
    <div class="container">
        <div class="card">
            <h1>This is login page</h1>
        </div>
    </div>
</template>

<script>
    export default {
        name: "Login"
    };
</script>

<style lang="scss">
    @import 'style.scss';
</style>

Here is my folder structure. style.scss is under /src and the component Login.vue is under /src/views :

vue文件夹结构

I even tried changing the import to

@import '/style.scss';    //and
@import '../style.scss';

Here's my webpack configuration of sass-loader

{
    test: /\.scss$/,
    use: [
        'vue-style-loader',
        'css-loader',
        'sass-loader'
    ]
}

Your file name is "styles" not "style".

Try one of those three file path options you listed above. I'm pretty sure either @import '/styles.scss'; or @import '../styles.scss'; should work for you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM