Merge branch 'feat/add-porkbun-components' into 'main'
[ProtonMail-WebClient.git] / applications / pass-desktop / webpack.main.config.js
blob5ef0dc22446754a4d1b7a1a801de4d3f48149917
1 const rules = require('./webpack.rules');
2 const plugins = require('./webpack.plugins');
4 /**
5  * @type {import('webpack').Configuration}
6  */
7 module.exports = {
8     /**
9      * This is the main entry point for your application, it's the first file
10      * that runs in the main process.
11      */
12     entry: './src/main.ts',
13     // Put your normal webpack config below here
14     module: {
15         rules,
16     },
17     optimization: {
18         minimize: false,
19     },
20     plugins,
21     resolve: {
22         extensions: ['.js', '.ts', '.jsx', '.tsx', '.css', '.json'],
23     },