私はwebpackを使っていくつかのboostrapと他のCSSファイルをバンドルしています。以下はです。webpack.config.jsファイル var htmlWebPack = require( 'html-webpack-plugin'); var ExtractTextPlugin = require( "extract-text-webpack-plugin");Webpack for Bootstrapの使い方は?
module.exports = {
entry: "./app/main.ts",
output: {
path: __dirname + '/dist',
filename: "bundle.js"
},
resolve: {
extensions: ['.js','.ts']
},
module: {
loaders: [
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader'
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader"
})
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader' }
]
},
plugins: [
new htmlWebPack({
template: './index.html',
}),
new ExtractTextPlugin("minified-style.css"),
]
};
と私はmain.tsに私のブートストラップフォルダを参照したが、この
require('../Content/bootstrap/bootstrap.min.css');
require('../Content/bootstrap/bootstrap-theme.min.css');
のようなファイルが、私はWebPACKのを実行すると、私はこの
D:\project\angularControls\angularControls\node_modules\loader-runner\lib\loadLoader.js:35
throw new Error("Module '" + loader.path + "' is not a loader (must have normal or pitch function)");
^ Error: Module 'D:\project\angularControls\angularControls\node_modules\url\url.js'
is not a loader (must have normal or pitch function)
のようなエラーに何かを取得しています何がうまくいかないのか分からない。