cc8c7e2cee
* Make all assets unique All CSS and JavaScript files have unique names now. I also moved the login to the /login path in order to ensure the HTML for each page is also unique. * Explicitly include assets to cache
19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
const path = require("path");
|
|
const merge = require("webpack-merge");
|
|
|
|
const root = path.resolve(__dirname, "../..");
|
|
|
|
module.exports = merge(
|
|
require(path.join(root, "scripts/webpack.node.config.js"))({
|
|
dirname: __dirname,
|
|
name: "dns",
|
|
}), {
|
|
externals: {
|
|
"node-named": "commonjs node-named",
|
|
},
|
|
entry: [
|
|
"./packages/dns/src/dns.ts"
|
|
],
|
|
},
|
|
);
|