mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-10 11:35:52 +01:00
move all chunks inside excalidraw-assets folder when bundling (#2484)
This commit is contained in:
parent
3be5038c14
commit
bd8e860d7f
@ -7,15 +7,15 @@ const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
|
||||
module.exports = {
|
||||
mode: "production",
|
||||
entry: {
|
||||
"excalidraw.min": "./index.tsx",
|
||||
"fonts.min": "../../../public/fonts.css",
|
||||
"excalidraw.min": ["./index.tsx", "../../../public/fonts.css"],
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, "dist"),
|
||||
library: "Excalidraw",
|
||||
libraryTarget: "umd",
|
||||
filename: "[name].js",
|
||||
publicPath: "/excalidraw-assets/",
|
||||
publicPath: "/",
|
||||
chunkFilename: "excalidraw-assets/[name].js",
|
||||
},
|
||||
resolve: {
|
||||
extensions: [".js", ".ts", ".tsx", ".css", ".scss"],
|
||||
@ -68,6 +68,7 @@ module.exports = {
|
||||
loader: "file-loader",
|
||||
options: {
|
||||
name: "[name].[ext]",
|
||||
outputPath: "excalidraw-assets",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user