vue.config.js to (laravel) webpack.mix.js

China☆狼群 提交于 2020-06-10 12:31:50

问题


I started using Vue using the Vue CLI template. In that template you create a file called 'vue.config.js' to define some settings. More to find here: https://cli.vuejs.org/guide/css.html#css-modules

I had a settings for an global css/sass file so all my components could access the variables (the file only contains vars).

vue.config.js:

module.exports = {
    // So we can use the template syntages in vue components (correct me if am wrong)
    runtimeCompiler: true,
    // CSS settings
    css: {
        loaderOptions: {
            sass: {
                // Load in global SASS file that we can use in any vue component and any sass file
                data: `
                  @import "@/assets/css/variables.scss";
                `
            }
        }
    }
};

Now I am working on another project. This time I use laravel and vue in one app. Laravel makes Vue works with webpack and webpack.mix.js.

Now here is where I get stuck. I can't create a config so the global css file with the variables can be recognises in the vue "one file components" I can't find any solution on the internet or my own experience to make this work.

Anyone experience with this?


回答1:


Laravel mix has a shortcut to "indicate a file to include in every component styles" (look for globalVueStyles in the option available). So simply add the code below to the webpack.mix.js file at project root.

mix.options({
    globalVueStyles: `resources/assets/css/variables.scss`
});

And install the dependency sass-resources-loader

npm install --save-dev sass-resources-loader

It works only as relative path. Also, the docs say that this option only works when extractVueStyles is enabled, however it was not needed for me.

To have more control over "vue-loader" you can use the undocumented function mix.override

mix.override(webpackConfig => {
    // iterate and modify webpackConfig.module.rules array
})


来源:https://stackoverflow.com/questions/56019339/vue-config-js-to-laravel-webpack-mix-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!