| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- const path = require('path')
- const { globSync } = require('glob')
- const webpack = require('webpack')
- const CopyPlugin = require('copy-webpack-plugin')
- const { WebpackAssetsManifest } = require('webpack-assets-manifest')
- const MiniCssExtractPlugin = require('mini-css-extract-plugin')
- const {
- LezerGrammarCompilerPlugin,
- } = require('./webpack-plugins/lezer-grammar-compiler')
- const PackageVersions = require('./app/src/infrastructure/PackageVersions.js')
- const invalidateBabelCacheIfNeeded = require('./frontend/macros/invalidate-babel-cache-if-needed')
- // Make sure that babel-macros are re-evaluated after changing the modules config
- invalidateBabelCacheIfNeeded()
- // Generate a hash of entry points, including modules
- const entryPoints = {
- bootstrap: './frontend/js/bootstrap.ts',
- devToolbar: './frontend/js/dev-toolbar.ts',
- 'ide-detached': './frontend/js/ide-detached.ts',
- marketing: './frontend/js/marketing.ts',
- 'main-style': './frontend/stylesheets/main-style.scss',
- tracking: './frontend/js/infrastructure/tracking.ts',
- 'linkedin-insight': './frontend/js/infrastructure/linkedin-insight.ts',
- }
- // Add entrypoints for each "page"
- globSync(
- path.join(__dirname, 'modules/*/frontend/js/pages/**/*.{js,jsx,ts,tsx}')
- ).forEach(page => {
- // in: /workspace/services/web/modules/foo/frontend/js/pages/bar.js
- // out: modules/foo/pages/bar
- const name = path
- .relative(__dirname, page)
- .replace(/frontend[/]js[/]/, '')
- .replace(/.(js|jsx|ts|tsx)$/, '')
- entryPoints[name] = './' + path.relative(__dirname, page)
- })
- globSync(
- path.join(__dirname, 'frontend/js/pages/**/*.{js,jsx,ts,tsx}')
- ).forEach(page => {
- // in: /workspace/services/web/frontend/js/pages/marketing/homepage.ts
- // out: pages/marketing/homepage
- const name = path
- .relative(path.join(__dirname, 'frontend/js/'), page)
- .replace(/.(js|jsx|ts|tsx)$/, '')
- entryPoints[name] = './' + path.relative(__dirname, page)
- })
- function getModuleDirectory(moduleName) {
- const entrypointPath = require.resolve(moduleName)
- const suffix = `node_modules/${moduleName}`
- const idx = entrypointPath.indexOf(suffix)
- if (idx === -1) {
- throw new Error(`could not find Node module: ${moduleName}`)
- }
- return entrypointPath.slice(0, idx + suffix.length)
- }
- const mathjaxDir = getModuleDirectory('mathjax')
- const pdfjsDir = getModuleDirectory('pdfjs-dist')
- const dictionariesDir = getModuleDirectory('@overleaf/dictionaries')
- const pyodideDir = getModuleDirectory('pyodide')
- const vendorDir = path.join(__dirname, 'frontend/js/vendor')
- const MATHJAX_VERSION = require('mathjax/package.json').version
- if (MATHJAX_VERSION !== PackageVersions.version.mathjax) {
- throw new Error(
- '"mathjax" version de-synced, update services/web/app/src/infrastructure/PackageVersions.js'
- )
- }
- const DICTIONARIES_VERSION =
- require('@overleaf/dictionaries/package.json').version
- if (DICTIONARIES_VERSION !== PackageVersions.version.dictionaries) {
- throw new Error(
- '"@overleaf/dictionaries" version de-synced, update services/web/app/src/infrastructure/PackageVersions.js'
- )
- }
- module.exports = {
- // Defines the "entry point(s)" for the application - i.e. the file which
- // bootstraps the application
- entry: entryPoints,
- // Define where and how the bundle will be output to disk
- // Note: webpack-dev-server does not write the bundle to disk, instead it is
- // kept in memory for speed
- output: {
- path: path.join(__dirname, 'public'),
- publicPath: '/',
- workerPublicPath: '/',
- // By default write into js directory
- filename: 'js/[name]-[contenthash].js',
- },
- optimization: {
- // https://webpack.js.org/plugins/split-chunks-plugin/#splitchunkschunks
- splitChunks: {
- chunks: 'all', // allow non-async chunks to be analysed for shared modules
- },
- // https://webpack.js.org/configuration/optimization/#optimizationruntimechunk
- runtimeChunk: {
- name: 'runtime',
- },
- },
- // Define how file types are handled by webpack
- module: {
- rules: [
- {
- test: /\.tsx?$/,
- include: path.resolve(
- __dirname,
- 'modules/writefull/frontend/js/integration'
- ),
- use: [
- {
- loader: 'babel-loader',
- options: {
- cacheDirectory: path.join(__dirname, '.cache/babel-loader'),
- configFile: path.join(__dirname, './babel.config.cjs'),
- },
- },
- {
- loader: 'ts-loader',
- options: {
- configFile: path.resolve(
- __dirname,
- 'modules/writefull/frontend/js/integration/tsconfig.json'
- ),
- transpileOnly: true,
- },
- },
- ],
- },
- {
- // Pass application JS/TS files through babel-loader,
- // transpiling to targets defined in browserslist
- test: /\.([jt]sx?|[cm]js)$/,
- // Only compile application files and specific dependencies
- // (other npm and vendored dependencies must be in ES5 already)
- exclude: [
- /node_modules\/(?!(react-dnd|chart\.js|@uppy|@writefull|pdfjs-dist|react-resizable-panels)\/)/,
- vendorDir,
- path.resolve(__dirname, 'modules/writefull/frontend/js/integration'),
- ],
- use: [
- {
- loader: 'babel-loader',
- options: {
- // Configure babel-loader to cache compiled output so that
- // subsequent compile runs are much faster
- cacheDirectory: path.join(__dirname, '.cache/babel-loader'),
- configFile: path.join(__dirname, './babel.config.cjs'),
- plugins: [
- process.env.REACT_REFRESH_ENABLED === 'true' &&
- 'react-refresh/babel',
- ].filter(Boolean),
- },
- },
- ],
- type: 'javascript/auto',
- },
- {
- test: /\.wasm$/,
- type: 'asset/resource',
- generator: {
- filename: 'js/[name]-[contenthash][ext]',
- },
- },
- {
- test: /\.txt$/,
- type: 'asset/source',
- generator: {
- filename: 'js/[name]-[contenthash][ext]',
- },
- },
- {
- // Pass Sass files through sass-loader/css-loader/mini-css-extract-
- // plugin (note: run in reverse order)
- test: /\.s[ac]ss$/,
- use: [
- // Allows the CSS to be extracted to a separate .css file
- { loader: MiniCssExtractPlugin.loader },
- // Resolves any CSS dependencies (e.g. url())
- { loader: 'css-loader' },
- // Resolve relative paths sensibly in SASS
- { loader: 'resolve-url-loader' },
- {
- // Runs autoprefixer on CSS via postcss
- loader: 'postcss-loader',
- options: {
- postcssOptions: {
- plugins: ['autoprefixer'],
- },
- },
- },
- // Compile Sass off the main event loop
- {
- loader: 'thread-loader',
- options: {
- // keep workers alive for dev-server, and shut them down when not needed
- poolTimeout:
- process.env.NODE_ENV === 'development' ? 10 * 60 * 1000 : 500,
- // bring up more workers after they timed out
- poolRespawn: true,
- // limit concurrency (one per entrypoint and let the small includes queue up)
- workers: 6,
- },
- },
- // Compiles Sass to CSS
- {
- loader: 'sass-loader',
- options: { sourceMap: true }, // sourceMap: true is required for resolve-url-loader
- },
- ],
- },
- {
- // Pass CSS files through css-loader & mini-css-extract-plugin (note: run in reverse order)
- test: /\.css$/i,
- oneOf: [
- {
- // Import as a string (for Shadow DOM usage): import styles from './file.css?inline'
- resourceQuery: /inline/,
- use: [
- {
- loader: 'css-loader',
- },
- {
- loader: 'postcss-loader',
- },
- ],
- },
- {
- // CSS from writefull module - inject directly into DOM
- include: path.resolve(__dirname, 'modules/writefull/'),
- use: [
- 'style-loader',
- {
- loader: 'css-loader',
- options: {
- importLoaders: 1,
- },
- },
- {
- loader: 'postcss-loader',
- options: {
- postcssOptions: {
- config: path.resolve(
- __dirname,
- 'modules/writefull/frontend/js/integration/postcss.config.js'
- ),
- },
- },
- },
- ],
- },
- {
- // Standard CSS processing (extracted into separate file)
- use: [MiniCssExtractPlugin.loader, 'css-loader'],
- },
- ],
- },
- {
- // Load fonts
- test: /\.(woff2?|ttf|otf)$/,
- type: 'asset/resource',
- generator: {
- filename: 'fonts/[name]-[contenthash][ext]',
- },
- },
- {
- // Load images and videos (static files)
- test: /\.(svg|gif|png|jpg|pdf|mp4)$/,
- type: 'asset/resource',
- generator: {
- filename: 'images/[name]-[contenthash][ext]',
- },
- },
- {
- // These options are necessary for handlebars to have access to helper
- // methods
- test: /\.handlebars$/,
- loader: 'handlebars-loader',
- options: {
- compat: true,
- knownHelpersOnly: false,
- runtimePath: 'handlebars/runtime',
- },
- },
- {
- // Load translations files with custom loader, to extract and apply
- // fallbacks
- test: /locales\/(\w{2}(-\w{2})?)\.json$/,
- use: [
- {
- loader: path.join(__dirname, 'frontend/translations-loader.js'),
- },
- ],
- },
- ],
- },
- resolve: {
- tsconfig: path.resolve(__dirname, 'tsconfig.json'),
- alias: {
- // Ensure all packages use the same jQuery instance (prevents duplicate
- // copies from Yarn hoisting breaking jQuery plugins like daterangepicker)
- jquery: require.resolve('jquery'),
- },
- // symlinks: false, // enable this while using `npm link`
- extensions: ['.js', '.jsx', '.ts', '.tsx', '.mjs', '.cjs', '.json'],
- fallback: {
- events: require.resolve('events'),
- // for react-dnd + React 17
- 'react/jsx-runtime': 'react/jsx-runtime.js',
- 'react/jsx-dev-runtime': 'react/jsx-dev-runtime.js',
- },
- },
- experiments: {
- asyncWebAssembly: true,
- },
- plugins: [
- new LezerGrammarCompilerPlugin(),
- // Generate a manifest.json file which is used by the backend to map the
- // base filenames to the generated output filenames
- new WebpackAssetsManifest({
- entrypoints: true,
- publicPath: true,
- output: 'manifest.json',
- }),
- new webpack.EnvironmentPlugin({
- // Ensure that process.env.RESET_APP_DATA_TIMER is defined, to avoid an error.
- // https://github.com/algolia/algoliasearch-client-javascript/issues/756
- RESET_APP_DATA_TIMER: '120000',
- // Ensure that process.env.CYPRESS is defined (see utils/worker.js)
- CYPRESS: false,
- }),
- // Prevent moment from loading (very large) locale files that aren't used
- new webpack.IgnorePlugin({
- resourceRegExp: /^\.\/locale$/,
- contextRegExp: /moment$/,
- }),
- // Set window.$ and window.jQuery
- new webpack.ProvidePlugin({
- $: 'jquery',
- jQuery: 'jquery',
- }),
- new CopyPlugin({
- patterns: [
- // Copy the required files for loading MathJax from MathJax NPM package
- // https://www.npmjs.com/package/mathjax#user-content-hosting-your-own-copy-of-the-mathjax-components
- {
- from: 'tex-svg.js',
- to: `js/libs/mathjax-${PackageVersions.version.mathjax}`,
- toType: 'dir',
- context: mathjaxDir,
- },
- {
- from: 'input/tex/extensions/**/*.js',
- to: `js/libs/mathjax-${PackageVersions.version.mathjax}`,
- toType: 'dir',
- context: mathjaxDir,
- },
- {
- from: 'ui/**/*',
- to: `js/libs/mathjax-${PackageVersions.version.mathjax}`,
- toType: 'dir',
- context: mathjaxDir,
- },
- {
- from: 'sre/**/*',
- to: `js/libs/mathjax-${PackageVersions.version.mathjax}`,
- toType: 'dir',
- context: mathjaxDir,
- },
- {
- from: '*',
- to: `js/dictionaries/${PackageVersions.version.dictionaries}`,
- toType: 'dir',
- context: `${dictionariesDir}/dictionaries`,
- },
- // Copy Pyodide runtime assets from the npm package so the loader is
- // always available. Python package wheels are fetched separately by
- // scripts/fetch-pyodide-packages.mjs into the same directory on disk.
- {
- from: 'pyodide.mjs',
- to: 'js/libs/pyodide',
- toType: 'dir',
- context: pyodideDir,
- },
- {
- from: 'pyodide.asm.js',
- to: 'js/libs/pyodide',
- toType: 'dir',
- context: pyodideDir,
- },
- {
- from: 'pyodide.asm.wasm',
- to: 'js/libs/pyodide',
- toType: 'dir',
- context: pyodideDir,
- },
- {
- from: 'python_stdlib.zip',
- to: 'js/libs/pyodide',
- toType: 'dir',
- context: pyodideDir,
- },
- {
- from: 'pyodide-lock.json',
- to: 'js/libs/pyodide',
- toType: 'dir',
- context: pyodideDir,
- },
- // Copy CMap files (used to provide support for non-Latin characters),
- // wasm, ICC profiles, fonts and images from pdfjs-dist package to build output.
- {
- from: 'cmaps',
- to: 'js/pdfjs-dist/cmaps',
- context: pdfjsDir,
- },
- {
- from: 'iccs',
- to: 'js/pdfjs-dist/iccs',
- context: pdfjsDir,
- },
- {
- from: 'wasm',
- to: 'js/pdfjs-dist/wasm',
- context: pdfjsDir,
- },
- {
- from: 'standard_fonts',
- to: 'fonts/pdfjs-dist',
- context: pdfjsDir,
- },
- {
- from: 'legacy/web/images',
- to: 'images/pdfjs-dist',
- context: pdfjsDir,
- },
- ],
- }),
- ],
- }
|