mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
Package.describe({
|
|
summary: "Configure content security policies",
|
|
version: "1.1.1"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use("modules");
|
|
api.use(["underscore", "browser-policy-common", "webapp"], "server");
|
|
api.imply(["browser-policy-common"], "server");
|
|
api.mainModule("browser-policy-content.js", "server");
|
|
});
|