こちらのページを参考にwebpackの設定を行っています。
JavaScriptとCSSを別々にしてルートディレクトリに出力したいのですが、手順通りにやってもCSSだけが出力されません。
原因を探ろうにもビルド実行時に何もエラーが出ていないので途方に暮れています。
初歩的な質問で恐縮ですがよろしくお願いします。
ディレクトリ構成
root/
├ node_modules/
├ src/
│ ├ main.scss (これをビルドして)
│ ├ main.js
│ └ sub.js
├ package-lock.json
├ package.json
├ webpack.config.js
├ bundle.js
├ style.css (これを出力させたい)
└ index.html
package.json
json
1{ 2 "name": "Webpack", 3 "version": "1.0.0", 4 "main": "index.js", 5 "scripts": { 6 "build": "webpack", 7 "watch": "webpack --watch" 8 }, 9 "devDependencies": { 10 "@babel/core": "^7.6.4", 11 "@babel/preset-env": "^7.6.3", 12 "babel-loader": "^8.0.6", 13 "css-loader": "^3.2.0", 14 "mini-css-extract-plugin": "^0.8.0", 15 "node-sass": "^4.12.0", 16 "sass-loader": "^8.0.0", 17 "webpack": "^4.41.0", 18 "webpack-cli": "^3.3.9" 19 }, 20 "dependencies": { 21 "jquery": "^3.4.1" 22 } 23}
webpack.config.js
javascript
1const path = require('path'); 2const MiniCssExtractPlugin = require('mini-css-extract-plugin'); 3const webpack = require('webpack'); 4 5module.exports = { 6 mode: 'development', 7 devtool: 'inline-source-map', 8 entry: './src/main.js', 9 output: { 10 path: path.resolve('./'), 11 filename: 'bundle.js' 12 }, 13 devServer: { 14 open: true 15 }, 16 module: { 17 rules: [ 18 // babel 19 { 20 test: /.js$/, 21 use: [ 22 { 23 loader: 'babel-loader', 24 options: { 25 presets: [ 26 '@babel/preset-env' 27 ] 28 } 29 } 30 ] 31 }, 32 33 // SASS 34 { 35 test: /.(sa|sc|c)ss$/, 36 use: [ 37 MiniCssExtractPlugin.loader, 38 { 39 loader: 'css-loader', 40 options: { 41 url: false, 42 minimize: true, 43 } 44 }, 45 { 46 loader: 'sass-loader', 47 options: { 48 sourceMap: true, 49 } 50 } 51 ] 52 } 53 ] 54 }, 55 plugins: [ 56 new MiniCssExtractPlugin({ 57 filename: 'style.css', 58 }), 59 new webpack.ProvidePlugin({ 60 $: 'jquery', 61 jQuery: 'jquery' 62 }) 63 ] 64}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。