airboardgame/backend/webpack.common.js

42 lines
885 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");
const CopyPlugin = require("copy-webpack-plugin");
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");
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 CopyPlugin({
patterns: [
{
from: "**/*",
context: path.resolve(__dirname, "public"),
},
],
}),
new EncryptPlugin({
key: SECRET_KEY,
2020-12-11 20:24:33 +01:00
}),
],
};