gpt4 book ai didi

css - webpack 输出 css 文件

转载 作者:行者123 更新时间:2023-11-28 16:43:43 25 4
gpt4 key购买 nike

我正在尝试让 webpack 为我的 less 而不是内联样式输出一个 css 文件。我一直在使用 extract-text-webpack-plugin .

我已经根据文档进行了设置,并查看了关于 stackoverflow 的类似问题,但无法弄清楚为什么我下面的 webpack 配置文件没有输出文件或在 index.html 中放置任何内容

var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {
entry: [
'webpack/hot/only-dev-server',
'./app/main.js'
],
output: {
path: __dirname + '/dist',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.js?$/,
loaders: ['react-hot', 'babel'],
exclude: /node_modules/
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract('style', 'css!less')
//loader: "style!css!less"
}
]
},
plugins: [
new webpack.NoErrorsPlugin(),
new ExtractTextPlugin('[name].css', {
allChunks: true
})
]

};

最佳答案

在当前状态下,确实,您需要手动嵌入 CSS。

但是,如果您使用 HTML Webpack Plugin (我强烈推荐它(-:),它将自动注入(inject),如文档所述:

If you have any css assets in webpack's output (for example, css extracted with the ExtractTextPlugin) then these will be included with <link> tags in the HTML head.

关于css - webpack 输出 css 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33444936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com