mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
Package.describe({
|
|
summary: "Makes the application crawlable to web spiders."
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['templating'], 'client');
|
|
|
|
api.add_files('spiderable.html', 'client');
|
|
api.add_files('spiderable.js', 'server');
|
|
});
|