Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-12-21 10:11:30 +0300
committerJulius Härtl <jus@bitgrid.net>2020-12-21 10:11:30 +0300
commit7cba838b137d050607525e407511bad623a43d33 (patch)
tree9ebe8d6a255dd1c122ef38503093355c995fc856 /webpack.config.js
parenta486b9e2f6bd930c320b5f81b865787afbb3487a (diff)
Cleanup webpack config
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 4d2c613..5cb4447 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -12,14 +12,13 @@ module.exports = {
filename: "[name].js",
chunkFilename: '[name].bundle.js',
path: path.resolve(__dirname, "build"),
- jsonpFunction: 'webpackJsonpTexteditor'
+ uniqueName: 'files_texteditor',
},
resolve: {
extensions: [".ts", ".js"]
},
plugins: [
new CleanWebpackPlugin(),
- new webpack.NamedModulesPlugin(),
],
module: {
rules: [
@@ -49,7 +48,4 @@ module.exports = {
}
]
},
- node: {
- fs: 'empty'
- }
};