webpack/test/configCases/target/web/webpack.config.js

8 lines
114 B
JavaScript

module.exports = {
target: "web",
module: {
loaders: [
{ test: /\.json$/, loader: "json-loader" }
]
}
};