mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
46 lines
1.8 KiB
JavaScript
46 lines
1.8 KiB
JavaScript
var isDevBuild = process.argv.indexOf('--env.prod') < 0;
|
|
var path = require('path');
|
|
var webpack = require('webpack');
|
|
var AureliaWebpackPlugin = require('aurelia-webpack-plugin');
|
|
|
|
var bundleOutputDir = './wwwroot/dist';
|
|
module.exports = {
|
|
resolve: { extensions: [ '.js', '.ts' ] },
|
|
entry: { 'app': 'aurelia-bootstrapper-webpack' }, // Note: The aurelia-webpack-plugin will add your app's modules to this bundle automatically
|
|
output: {
|
|
path: path.resolve(bundleOutputDir),
|
|
publicPath: '/dist',
|
|
filename: '[name].js'
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{ test: /\.ts$/, include: /ClientApp/, loader: 'ts-loader', query: { silent: true } },
|
|
{ test: /\.html$/, loader: 'html-loader' },
|
|
{ test: /\.css$/, loaders: [ 'style-loader', 'css-loader' ] },
|
|
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' },
|
|
{ test: /\.json$/, loader: 'json-loader' }
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({ IS_DEV_BUILD: JSON.stringify(isDevBuild) }),
|
|
new webpack.DllReferencePlugin({
|
|
context: __dirname,
|
|
manifest: require('./wwwroot/dist/vendor-manifest.json')
|
|
}),
|
|
new AureliaWebpackPlugin({
|
|
root: path.resolve('./'),
|
|
src: path.resolve('./ClientApp'),
|
|
baseUrl: '/'
|
|
})
|
|
].concat(isDevBuild ? [
|
|
// Plugins that apply in development builds only
|
|
new webpack.SourceMapDevToolPlugin({
|
|
filename: '[file].map', // Remove this line if you prefer inline source maps
|
|
moduleFilenameTemplate: path.relative(bundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
|
|
})
|
|
] : [
|
|
// Plugins that apply in production builds only
|
|
new webpack.optimize.UglifyJsPlugin()
|
|
])
|
|
};
|