LoginSignup
6
6

More than 5 years have passed since last update.

RequireJSのやつにキャッシュ対策仕込む

Last updated at Posted at 2014-06-30

"@@cache_buster"grunt-replaceなりgulp-replaceなり、あるいはPHPやerbで置換するものとして。

まちがい

<script src="/scripts/require.js" data-main="/scripts/main.js?_=@@cache_buster"></script>

せいかい

<script>
  window.require = { urlArgs:'_=@@cache_buster' };
</script>
<script src="/scripts/require.js" data-main="/scripts/main.js"></script>

以上です

何卒よろしくお願い致します。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6