Question

I'm using the flatiron static plugins like this:

app.use(flatiron.plugins.static, {
    dir: './app/assets',
    cache: false
});

The st module has caching options, like cache: false. But it doesn't work like that. I don't know if the flatiron plugin doesn't accept the cache option. Any help on this?

Was it helpful?

Solution

I had to plug in the plugin like this:

app.use(flatiron.plugins.static, {dir: './app/assets', url: '/assets'});

Otherwise all root (/) routes would have been cached and served static.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top