memories/webpack.config.ts

138 lines
3.7 KiB
TypeScript
Raw Normal View History

const webpack = require('webpack');
const path = require('path');
const WorkboxPlugin = require('workbox-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const { VueLoaderPlugin } = require('vue-loader');
2022-09-13 01:33:24 +00:00
const appName = process.env.npm_package_name!;
const appVersion = process.env.npm_package_version!;
const buildMode = process.env.NODE_ENV;
const isDev = buildMode === 'development';
console.info('Building', appName, appVersion, '\n');
2022-10-17 02:52:44 +00:00
module.exports = {
target: 'web',
mode: buildMode,
devtool: 'source-map',
cache: isDev,
context: path.resolve(__dirname, 'src'),
entry: {
main: './main',
admin: './admin',
'hooks-clear-cache': './hooks/clear-cache',
},
output: {
path: path.resolve(__dirname, 'js'),
publicPath: path.join('/apps/', appName, '/js/'),
// Output file names
filename: `${appName}-[name].js?v=[contenthash]`,
chunkFilename: `${appName}-[name].js?v=[contenthash]`,
// Clean output before each build
clean: true,
// Make sure sourcemaps have a proper path and do not
// leak local paths https://github.com/webpack/webpack/issues/3603
devtoolNamespace: appName,
devtoolModuleFilenameTemplate(info: any) {
const rootDir = process.cwd();
const rel = path.relative(rootDir, info.absoluteResourcePath);
return `webpack:///${appName}/${rel}`;
},
},
2022-08-14 20:54:18 +00:00
watchOptions: {
ignored: /node_modules/,
aggregateTimeout: 300,
},
2022-10-15 19:21:53 +00:00
optimization: {
chunkIds: 'named',
splitChunks: {
automaticNameDelimiter: '-',
},
minimize: !isDev,
minimizer: [
new TerserPlugin({
exclude: [/filerobot-image-editor/],
terserOptions: {
output: {
comments: false,
},
},
extractComments: true,
}),
],
},
module: {
rules: [
{
test: /\.(png|jpe?g|gif|svg|woff2?|eot|ttf)$/,
type: 'asset/inline',
},
{
test: /\.s?css$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/],
},
},
],
exclude: /node_modules/,
},
],
},
plugins: [
new VueLoaderPlugin(),
// Bundle service worker
new WorkboxPlugin.InjectManifest({
swSrc: path.resolve(path.join('src', 'service-worker.ts')),
swDest: 'memories-service-worker.js',
maximumFileSizeToCacheInBytes: (isDev ? 10 : 4) * 1024 * 1024,
}),
// Make appName & appVersion available as a constant
new webpack.DefinePlugin({ appName: JSON.stringify(appName) }),
new webpack.DefinePlugin({ appVersion: JSON.stringify(appVersion) }),
// Bundle analyzer (npm i --no-save webpack-bundle-analyzer)
// new (require('webpack-bundle-analyzer').BundleAnalyzerPlugin)()
],
resolve: {
extensions: ['.ts', '.js', '.vue'],
symlinks: false,
alias: {
// Ensure npm does not duplicate vue dependency, and that npm link works for vue 3
// See https://github.com/vuejs/core/issues/1503
// See https://github.com/nextcloud/nextcloud-vue/issues/3281
vue$: path.resolve(__dirname, 'node_modules', 'vue'),
// You also need to update tsconfig.json
'@services': path.resolve(__dirname, 'src', 'services'),
'@assets': path.resolve(__dirname, 'src', 'assets'),
'@components': path.resolve(__dirname, 'src', 'components'),
'@mixins': path.resolve(__dirname, 'src', 'mixins'),
'@native': path.resolve(__dirname, 'src', 'native'),
},
},
};