Webpack 为啥只有 scss 有效,而 css 无效?
Posted
技术标签:
【中文标题】Webpack 为啥只有 scss 有效,而 css 无效?【英文标题】:Webpack why only scss works, but css does not?Webpack 为什么只有 scss 有效,而 css 无效? 【发布时间】:2020-12-05 04:09:33 【问题描述】:当我在vue js组件中写()时,一切正常,但是如果我去掉lang = "scss"> 标题,正常的css停止工作,并出现以下错误:
ModuleBuildError 在 模块构建失败(来自 ./node_modules/mini-css-extract-plugin/dist/loader.js): ModuleParseError:模块解析失败:意外的令牌(1:0)文件是 用这些装载机处理:* ./node_modules/sass-loader/dist/cjs.js * ./node_modules/vue-loader/lib/index.js 你可能需要一个额外的 loader 来处理这些加载器的结果。
.btn-警告 |背景颜色:#FF8800; |
可能是什么问题?
我的网络包设置:
var path = require('path')
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker');
var WriteFilePlugin = require('write-file-webpack-plugin');
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports =
entry: './src/main.js',
output:
path: path.resolve(__dirname, './dist'),
publicPath: 'http://localhost:8080/dist/',
filename: 'build.js'
,
plugins: [
new CleanWebpackPlugin(),
new BundleTracker(
path: __dirname,
filename: './assets/webpack-stats.json',
),
new WriteFilePlugin(),
new VueLoaderPlugin(),
],
module:
rules: [
test: /\.css$/,
use: [
'vue-style-loader',
MiniCssExtractPlugin.loader,
'style-loader',
'sass-loader',
],
,
test: /\.scss$/,
use: [
'vue-style-loader',
'style-loader',
'css-loader',
'sass-loader'
],
,
test: /\.sass$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader?indentedSyntax'
],
,
test: /\.vue$/,
loader: 'vue-loader',
options:
loaders:
'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]',
esModule: false,
]
,
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
)
])
【问题讨论】:
我认为你应该在use
的test: /\.css$/
数组中添加'css-loader'
添加了这个并没有解决问题
【参考方案1】:
请将此标尺中的sass-loader
替换为css-loader
:
test: /\.css$/,
use: [
'vue-style-loader',
MiniCssExtractPlugin.loader,
'style-loader',
'css-loader', // <--- Here. Instead of sass-loader
],
,
sass-loader
适用于 *.scss 文件。 css-loader
适用于 *.css 文件。
sass-loader
需要 css-loader
作为后续加载器(或其他处理 .css 文件的加载器)
【讨论】:
以上是关于Webpack 为啥只有 scss 有效,而 css 无效?的主要内容,如果未能解决你的问题,请参考以下文章
使用 import 而不是 require 时 webpack 不捆绑 scss
为啥 VS Code 认为导入有效但 WebPack 不认为有效?