mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.4 KiB
146 lines
4.4 KiB
const webpack = require('webpack'),
|
|
path = require('path'),
|
|
helpers = require('./helpers');
|
|
|
|
const plugins = {
|
|
// https://github.com/webpack-contrib/mini-css-extract-plugin
|
|
MiniCssExtractPlugin: require('mini-css-extract-plugin'),
|
|
// https://github.com/dividab/tsconfig-paths-webpack-plugin
|
|
TsconfigPathsPlugin: require('tsconfig-paths-webpack-plugin')
|
|
};
|
|
|
|
const isDevServer = path.basename(require.main.filename) === 'webpack-dev-server.js';
|
|
|
|
module.exports = {
|
|
/**
|
|
* Options affecting the resolving of modules.
|
|
*
|
|
* See: https://webpack.js.org/configuration/resolve/
|
|
*/
|
|
resolve: {
|
|
/**
|
|
* An array of extensions that should be used to resolve modules.
|
|
*
|
|
* See: https://webpack.js.org/configuration/resolve/#resolve-extensions
|
|
*/
|
|
extensions: ['.js', '.mjs', '.ts', '.css', '.scss'],
|
|
modules: [
|
|
helpers.root('app'),
|
|
helpers.root('app', 'theme'),
|
|
helpers.root('node_modules')
|
|
],
|
|
|
|
plugins: [
|
|
new plugins.TsconfigPathsPlugin()
|
|
]
|
|
},
|
|
|
|
/**
|
|
* Options affecting the normal modules.
|
|
*
|
|
* See: https://webpack.js.org/configuration/module/
|
|
*/
|
|
module: {
|
|
/**
|
|
* An array of Rules which are matched to requests when modules are created.
|
|
*
|
|
* See: https://webpack.js.org/configuration/module/#module-rules
|
|
*/
|
|
rules: [{
|
|
test: /\.mjs$/,
|
|
type: "javascript/auto",
|
|
include: [/node_modules/]
|
|
}, {
|
|
test: /[\/\\]@angular[\/\\]core[\/\\].+\.js$/,
|
|
parser: { system: true },
|
|
include: [/node_modules/]
|
|
}, {
|
|
test: /\.ts$/,
|
|
use: [{
|
|
loader: 'awesome-typescript-loader'
|
|
}, {
|
|
loader: 'angular-router-loader'
|
|
}, {
|
|
loader: 'angular2-template-loader'
|
|
}],
|
|
exclude: [/node_modules/]
|
|
}, {
|
|
test: /\.ts$/,
|
|
use: [{
|
|
loader: 'awesome-typescript-loader'
|
|
}],
|
|
include: [/node_modules/]
|
|
}, {
|
|
test: /\.js\.flow$/,
|
|
use: [{
|
|
loader: 'ignore-loader'
|
|
}],
|
|
include: [/node_modules/]
|
|
}, {
|
|
test: /\.html$/,
|
|
use: [{
|
|
loader: 'raw-loader'
|
|
}]
|
|
}, {
|
|
test: /\.(woff|woff2|ttf|eot)(\?.*$|$)/,
|
|
use: [{
|
|
loader: 'file-loader?name=[name].[hash].[ext]',
|
|
options: {
|
|
outputPath: 'assets',
|
|
/*
|
|
* Use custom public path as ./ is not supported by fonts.
|
|
*/
|
|
publicPath: isDevServer ? undefined : 'assets'
|
|
}
|
|
}]
|
|
}, {
|
|
test: /\.(png|jpe?g|gif|svg|ico)(\?.*$|$)/,
|
|
use: [{
|
|
loader: 'file-loader?name=[name].[hash].[ext]',
|
|
options: {
|
|
outputPath: 'assets'
|
|
}
|
|
}]
|
|
}, {
|
|
test: /\.css$/,
|
|
use: [
|
|
plugins.MiniCssExtractPlugin.loader,
|
|
{
|
|
loader: 'css-loader'
|
|
}]
|
|
}, {
|
|
test: /\.scss$/,
|
|
use: [{
|
|
loader: 'raw-loader'
|
|
}, {
|
|
loader: 'sass-loader', options: { includePaths: [helpers.root('app', 'theme')] }
|
|
}],
|
|
exclude: helpers.root('app', 'theme')
|
|
}]
|
|
},
|
|
|
|
plugins: [
|
|
/**
|
|
* Puts each bundle into a file and appends the hash of the file to the path.
|
|
*
|
|
* See: https://github.com/webpack-contrib/mini-css-extract-plugin
|
|
*/
|
|
new plugins.MiniCssExtractPlugin('[name].css'),
|
|
|
|
new webpack.LoaderOptionsPlugin({
|
|
options: {
|
|
htmlLoader: {
|
|
/**
|
|
* Define the root for images, so that we can use absolute urls.
|
|
*
|
|
* See: https://github.com/webpack/html-loader#Advanced_Options
|
|
*/
|
|
root: helpers.root('app', 'images')
|
|
},
|
|
context: '/'
|
|
}
|
|
}),
|
|
|
|
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en/)
|
|
]
|
|
};
|