Webpack 没有将 css 复制到 dist
Webpack not copying css into dist
我有以下 css 个文件:
<link rel="stylesheet" href="style/select.css">
<link rel="stylesheet" href="style/site.css">
和以下 webpack 配置
var path = require("path");
module.exports = {
entry: {
app: './src/index.js'
},
output: {
path: path.resolve(__dirname + '/dist'),
filename: '[name].js',
},
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [
'style-loader',
'css-loader',
]
},
{
test: /\.html$/,
exclude: /node_modules/,
loader: 'file-loader?name=[name].[ext]',
},
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node_modules/],
loader: 'elm-webpack-loader?verbose=true&warn=true',
options: {debug: true, warn: true},
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff',
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
},
],
noParse: /\.elm$/,
},
devServer: {
inline: true,
stats: { colors: true }
},
resolve: {
mainFields: [ 'main'],
}
};
当我使用 webpack-dev-server 时,内存文件服务器似乎有正确的 css 文件。但是当我打电话给
yarn build
它不会复制我的 dist 文件夹中的 css 文件,因此无法加载 css 文件。
您要在模块中导入 css 文件吗?我认为您需要使用 ExtractTextWebpackPlugin 将 js 包中的 css 提取到单独的 css 文件中。
虽然这不适用于 webpack-dev-server,因此您需要在用于开发服务器的配置中禁用该插件。有一个选项可以让您这样做:
new ExtractTextPlugin({
filename: '[name].css',
disable: true,
}),
试试这个配置到 webpack 4,
对于装载机:
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: {modules:true, importLoaders: 1 } },
{ loader: 'postcss-loader', options: {
ident: 'postcss',
plugins: () => [
postcssPresetEnv(/* pluginOptions */)
]
} }
]
对于插件部分:
new MiniCssExtractPlugin({
filename: '[name].css' }),
我有以下 css 个文件:
<link rel="stylesheet" href="style/select.css">
<link rel="stylesheet" href="style/site.css">
和以下 webpack 配置
var path = require("path");
module.exports = {
entry: {
app: './src/index.js'
},
output: {
path: path.resolve(__dirname + '/dist'),
filename: '[name].js',
},
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [
'style-loader',
'css-loader',
]
},
{
test: /\.html$/,
exclude: /node_modules/,
loader: 'file-loader?name=[name].[ext]',
},
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node_modules/],
loader: 'elm-webpack-loader?verbose=true&warn=true',
options: {debug: true, warn: true},
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff',
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
},
],
noParse: /\.elm$/,
},
devServer: {
inline: true,
stats: { colors: true }
},
resolve: {
mainFields: [ 'main'],
}
};
当我使用 webpack-dev-server 时,内存文件服务器似乎有正确的 css 文件。但是当我打电话给
yarn build
它不会复制我的 dist 文件夹中的 css 文件,因此无法加载 css 文件。
您要在模块中导入 css 文件吗?我认为您需要使用 ExtractTextWebpackPlugin 将 js 包中的 css 提取到单独的 css 文件中。
虽然这不适用于 webpack-dev-server,因此您需要在用于开发服务器的配置中禁用该插件。有一个选项可以让您这样做:
new ExtractTextPlugin({
filename: '[name].css',
disable: true,
}),
试试这个配置到 webpack 4, 对于装载机:
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: {modules:true, importLoaders: 1 } },
{ loader: 'postcss-loader', options: {
ident: 'postcss',
plugins: () => [
postcssPresetEnv(/* pluginOptions */)
]
} }
]
对于插件部分:
new MiniCssExtractPlugin({
filename: '[name].css' }),