web-dev-qa-db-ja.com

webpack css-loaderを使用したソースマップ

ソースマップをcss-loaderで動作させるのに苦労しています。

コンソールでの出力:

enter image description here

Css-loaderのドキュメントには次のように書かれています:

SourceMaps

SourceMapを含めるには、sourceMapクエリパラメータを設定します。

require( "css-loader?sourceMap!./ file.css")

私のwebpack.config

var webpack = require('webpack')

module.exports = {
  entry: './src/client/js/App.js',

  output: {
    path: './public',
    filename: 'bundle.js',
    publicPath: '/'
  },

  plugins: process.env.NODE_ENV === 'production' ? [
    new webpack.optimize.DedupePlugin(),
    new webpack.optimize.OccurrenceOrderPlugin(),
    new webpack.optimize.UglifyJsPlugin()
  ] : [],

  module: {
    loaders: [
      { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader?presets[]=es2015&presets[]=react' },
      { test: /\.scss$/, loaders: ['style', 'css', 'sass']},
      { test: /\.css$/, loader: "style-loader!css-loader?sourceMap!./file.css" },
      { test: /\.png$/, loader: "url-loader?limit=100000" },
      { test: /\.jpg$/, loader: "file-loader" }
    ]
  }
}

sassを含める方法

import React from 'react'
import { render } from 'react-dom'
import { Router, browserHistory } from 'react-router'
import routes from './routes'
import '../scss/main.scss'

render(
  <Router routes={routes} history={browserHistory}/>,
  document.getElementById('app')
)
20
Jamie Hutber
  1. source-maps をwebpack経由で有効にします

    ...
    devtool: 'source-map'
    ...
    
  2. Sass-Filesのソースマップも有効にしたいかもしれません

    module: {
      loaders: [
        ...
        {
          test: /\.scss$/,
          loaders: [
            'style-loader',
            'css-loader?sourceMap',
            'sass-loader?sourceMap'
          ]
        }, {
          test: /\.css$/,
          loaders: [
            "style-loader",
            "css-loader?sourceMap"
          ]
        },
        ...
      ]
    }
    
  3. extract text plugin を使用して、CSSをファイルに抽出します。

    ...
    plugins: [
      ...
      new ExtractTextPlugin('file.css')
    ]
    ...
    
33
HaNdTriX

Webpack configで設定する必要があるプロパティがいくつかあります。

{
   output: {
      ...
   },

   debug: true, // switches loaders into debug mode
   devtool: 'eval-cheap-module-source-map', // or one of the other flavors, not entirely sure if this is required for css source maps
   ...
}

デフォルトでは、webpack devサーバーにはデバッグ機能がありません。 configで設定する代わりに、-dまたは--debugフラグをCLI経由でwebpack-dev-serverに渡すこともできます。

0