Notes/apps/client/webpack.config.ts

130 lines
3.9 KiB
TypeScript
Raw Normal View History

2024-07-23 00:12:08 +03:00
import { fileURLToPath } from "url";
import path from "path";
import autoprefixer from "autoprefixer";
import assetPath from "./src/asset_path.js";
import miniCssExtractPlugin from "mini-css-extract-plugin";
import type { Configuration } from "webpack";
import CopyPlugin from "copy-webpack-plugin";
2020-04-12 14:22:51 +02:00
2024-07-23 00:12:08 +03:00
const rootDir = path.dirname(fileURLToPath(import.meta.url));
const config: Configuration = {
2025-01-09 18:07:02 +02:00
mode: "production",
2020-04-12 14:22:51 +02:00
entry: {
setup: "./src/setup.js",
login: "./src/login.js",
mobile: "./src/mobile.js",
desktop: "./src/desktop.js",
share: "./src/share.js",
// TriliumNextTODO: integrate set_password into setup entry point/view
set_password: "./src/set_password.js"
2020-04-12 14:22:51 +02:00
},
output: {
publicPath: `${assetPath}/app-dist/`,
path: path.resolve(rootDir, "build"),
2025-01-09 18:07:02 +02:00
filename: "[name].js"
2020-04-12 14:22:51 +02:00
},
plugins: [
new miniCssExtractPlugin({
// TriliumNextTODO: enable this, once webpack build outputs into the "build" folder, instead of "src/public/app-dist" folder => @pano9000
//filename: "../stylesheets/[name].css"
}),
new CopyPlugin({
patterns: [
{
context: "node_modules/@excalidraw/excalidraw/dist/prod/fonts/",
from: "**/*",
to: "excalidraw/fonts/"
}
]
})
],
module: {
rules: [
{
2025-01-09 18:07:02 +02:00
test: /\.ts$/,
use: [
{
loader: "ts-loader",
options: {
configFile: path.join(rootDir, "tsconfig.json")
2025-01-09 18:07:02 +02:00
}
}
],
exclude: /node_modules/
},
{
test: /\.m?js$/,
resolve: {
fullySpecified: false
}
},
{
// bootstrap CSS related configuration
test: /\.(css)$/,
use: [
{
loader: miniCssExtractPlugin.loader
},
{
loader: "css-loader",
options: {
esModule: true
}
},
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [autoprefixer]
}
}
}
]
},
{
// bootstrap CSS related configuration
test: /\.(scss)$/,
use: [
{
loader: miniCssExtractPlugin.loader
},
{
loader: "css-loader"
},
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [autoprefixer]
}
}
},
{
loader: "sass-loader"
}
]
},
{
test: /\.(png)$/i,
type: 'asset/resource'
2025-01-09 18:07:02 +02:00
}
]
},
resolve: {
2025-01-09 18:07:02 +02:00
extensions: [".ts", ".js"],
extensionAlias: {
".js": [".js", ".ts"],
".cjs": [".cjs", ".cts"],
".mjs": [".mjs", ".mts"]
},
alias: {
stylesheets: path.resolve(rootDir, "src/public/stylesheets")
}
},
stats: "verbose",
devtool: "nosources-source-map",
2025-01-09 18:07:02 +02:00
target: "electron-renderer"
2021-12-23 23:01:25 +01:00
};
export default config;