aboutsummaryrefslogtreecommitdiff
path: root/webpack.main.config.js
blob: 4c66d6436d35d14025f13868154614d93f62a86a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
	/**
   * This is the main entry point for your application, it's the first file
   * that runs in the main process.
   */
	entry: "./src/main.js",
	// Put your normal webpack config below here
	module: {
		rules: require("./webpack.rules")
	}
};