我想用 webpack 编译 scss 和 js。但是,只要我将它与 Symfony 3 一起使用,其中只有前端的某些页面使用 javascript 组件,我想将 css 编译为独立文件并使用老式<link href="style.css">
而不是将 (s)css 导入到 javascript 模块中。
我设法用以下webpack.config.js
我应该生产的js/script.js
和来做到这一点css/style.css
。它有效,但它也产生js/style.js
了我不需要也不想要的东西。我想问题是条目“样式”也会产生输出 JS,即使它是由 ExtractTextPlugin 处理的,但是如何告诉 webpack 不要为条目产生 javascript 输出呢?
我还尝试不使用多个入口点,并使用 index.js 将 main.scss 添加到一个入口点列表中。它当然没有产生额外的文件,但是转译的 script.js 包含对 main.scss 的引用,这是我不想要的。我想要一个完全独立于脚本来管理样式的纯解决方案。
const path = require('path');
const outputPath = path.join(__dirname, '..', 'www');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
devtool: 'source-map',
entry: {
script: ['./src/js/index.js'],
style: ['./src/scss/main.scss']
},
target: 'web',
output: {
filename: 'js/[name].js',
path: outputPath
},
resolve: {
extensions: ['.js']
},
module: {
rules: [
{ // sass / scss loader for webpack
test: /\.(sass|scss)$/,
loader: ExtractTextPlugin.extract(['css-loader', 'sass-loader'])
}
]
},
plugins: [
new ExtractTextPlugin({ // define where to save the file
filename: 'css/[name].css',
allChunks: true,
})
]
};