mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 09:42:28 +08:00
20 lines
688 B
JavaScript
20 lines
688 B
JavaScript
/**
|
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* eslint-env node */
|
|
|
|
const { builds } = require( '@ckeditor/ckeditor5-dev-utils' );
|
|
const webpack = require( 'webpack' );
|
|
|
|
module.exports = builds.getDllPluginWebpackConfig( webpack, {
|
|
themePath: require.resolve( '@ckeditor/ckeditor5-theme-lark' ),
|
|
packagePath: __dirname,
|
|
manifestPath: require.resolve( 'ckeditor5/build/ckeditor5-dll.manifest.json' ),
|
|
isDevelopmentMode: process.argv.includes( '--mode=development' ),
|
|
tsconfigPath: require.resolve( 'ckeditor5/tsconfig.dll.json' )
|
|
} );
|