mirror of
https://github.com/Febbweiss/springboot-react-webpack.git
synced 2026-03-04 22:25:34 +00:00
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
var path = require('path'),
|
|
webpack = require('webpack'),
|
|
CommonsChunkPlugin = require("webpack/lib/optimize/CommonsChunkPlugin"),
|
|
ExtractTextPlugin = require("extract-text-webpack-plugin");
|
|
|
|
var source_dir = __dirname + '/src/main/resources/static/js',
|
|
node_dir = __dirname + '/node_modules';
|
|
|
|
var config = {
|
|
entry: {
|
|
app: [source_dir + '/app.render'],
|
|
vendors: [source_dir + '/vendors']
|
|
},
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx', '.css']
|
|
},
|
|
devtool: 'sourcemaps',
|
|
cache: true,
|
|
debug: true,
|
|
output: {
|
|
path: './target/classes/static/js',
|
|
filename: '[name].bundle.js',
|
|
|
|
},
|
|
plugins: [
|
|
new ExtractTextPlugin("../css/[name].css"),
|
|
new CommonsChunkPlugin("vendors.bundle.js", ["app", "vendors"]),
|
|
],
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /(node_modules)/,
|
|
loader: 'babel',
|
|
query: {
|
|
cacheDirectory: true,
|
|
presets: ['es2015', 'react']
|
|
}
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: ExtractTextPlugin.extract("style-loader", "css-loader!postcss-loader")
|
|
},
|
|
{
|
|
test: /\.jpe?g$|\.gif$|\.png$|\.svg$|\.woff(2)?$|\.ttf$|\.wav$|\.mp3$/,
|
|
loader: require.resolve("file-loader") + "?name=../[path][name].[ext]"
|
|
},
|
|
{
|
|
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
|
|
loader: "file"
|
|
},
|
|
{
|
|
test: /\.(woff|woff2)$/,
|
|
loader:"url?prefix=font/&limit=5000"
|
|
},
|
|
{
|
|
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
|
|
loader: "url?limit=10000&mimetype=application/octet-stream"
|
|
},
|
|
{
|
|
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
|
|
loader: "url?limit=10000&mimetype=image/svg+xml"
|
|
},
|
|
{
|
|
test: path.join(__dirname, '.'),
|
|
exclude: /(node_modules)/,
|
|
loader: 'babel-loader'
|
|
}
|
|
]
|
|
},
|
|
postcss: function () {
|
|
return [];
|
|
}
|
|
};
|
|
|
|
module.exports = config; |