airboardgame/backend/webpack.common.js

36 lines
783 B
JavaScript
Raw Normal View History

2020-12-11 20:24:33 +01:00
const path = require("path");
require("dotenv").config({
path: path.join(__dirname, ".env"),
});
const EncryptPlugin = require("ricochetjs").EncryptPlugin;
2021-05-07 14:13:08 +02:00
const Dotenv = require("dotenv-webpack");
2020-12-11 20:24:33 +01:00
const SECRET_KEY = process.env.RICOCHET_SITE_KEY;
2020-12-11 20:24:33 +01:00
if (!SECRET_KEY) {
console.log(
"You must define a RICOCHET_SITE_KEY env variable.\n" +
"If you don't have any key, please visit the Ricochet.js admin panel to create one."
);
2020-12-11 20:24:33 +01:00
process.exit(-1);
}
module.exports = {
entry: "./src/index.js",
target: "node",
devtool: false,
output: {
path: path.resolve(__dirname, "../public"),
filename: "ricochet.json",
2021-05-07 14:13:08 +02:00
library: {
type: "commonjs",
},
2020-12-11 20:24:33 +01:00
},
plugins: [
2021-05-07 14:13:08 +02:00
new Dotenv(),
2020-12-11 20:24:33 +01:00
new EncryptPlugin({
key: SECRET_KEY,
2020-12-11 20:24:33 +01:00
}),
],
};