Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpack4.x 同时使用postcss 和 sass 配置 #17

Open
huangshuwei opened this issue Sep 1, 2018 · 0 comments
Open

webpack4.x 同时使用postcss 和 sass 配置 #17

huangshuwei opened this issue Sep 1, 2018 · 0 comments
Labels

Comments

@huangshuwei
Copy link
Owner

huangshuwei commented Sep 1, 2018

错误的loader配置:

// webpack.config.js
     {
                test: /\.(css|postcss|sass|scss)$/,
                use: [
                    'style-loader',
                    'css-loader',
                    'postcss-loader',
                    'sass-loader'
                ]
            },

正确的配置:

// webpack.config.js
       {
                test: /\.(postcss)$/,
                use: [
                    'style-loader',
                    'css-loader',
                    'postcss-loader'
                ]
            },
            {
                test: /\.(css|sass|scss)$/,
                use: [
                    'style-loader',
                    'css-loader',
                    'sass-loader',
                    'resolve-url-loader'
                ]
            }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant